History log of /trunk/main/autodoc/ (Results 1 - 25 of 26)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
11c03c6d10-Feb-2024 Damjan Jovanovic

Merge main/cosv and main/udm into main/autodoc.

main/autodoc depends on main/cosv and main/udm.
main/udm depends on main/cosv.
No other module depends on main/cosv or main/udm.
T

Merge main/cosv and main/udm into main/autodoc.

main/autodoc depends on main/cosv and main/udm.
main/udm depends on main/cosv.
No other module depends on main/cosv or main/udm.
The only deliverable from main/autodoc is the autodoc executable -
there are no libraries, and all headers remain private and undelivered.

We might even be able to use some third-party documentation generator
instead of autodoc, perhaps Doxygen. Whether we should go that way is debatable,
but there is no point in littering main/ with 2 modules and littering solver/
with many headers and 2 static libraries just so autodoc can consume them.
Rather make their code internal to autodoc.

Patch by: me

show more ...


Executable_autodoc.mk
inc/cosv/bstream.hxx
inc/cosv/comdline.hxx
inc/cosv/comfunc.hxx
inc/cosv/commandline.hxx
inc/cosv/csv_env.hxx
inc/cosv/csv_ostream.hxx
inc/cosv/csv_precomp.h
inc/cosv/datetime.hxx
inc/cosv/dirchain.hxx
inc/cosv/file.hxx
inc/cosv/mbstream.hxx
inc/cosv/openclose.hxx
inc/cosv/persist.hxx
inc/cosv/ploc.hxx
inc/cosv/ploc_dir.hxx
inc/cosv/plocroot.hxx
inc/cosv/std_outp.hxx
inc/cosv/str_types.hxx
inc/cosv/streamstr.hxx
inc/cosv/string.hxx
inc/cosv/stringdata.hxx
inc/cosv/tpl/dyn.hxx
inc/cosv/tpl/funcall.hxx
inc/cosv/tpl/processor.hxx
inc/cosv/tpl/range.hxx
inc/cosv/tpl/swelist.hxx
inc/cosv/tpl/tpltools.hxx
inc/cosv/tpl/vvector.hxx
inc/cosv/x.hxx
inc/udm/html/htmlitem.hxx
inc/udm/xml/xmlitem.hxx
prj/build.lst
source/cosv/comphelp/badcast.cxx
source/cosv/fullcpp.mk
source/cosv/inc/precomp.h
source/cosv/service/comdline.cxx
source/cosv/service/comfunc.cxx
source/cosv/service/commandline.cxx
source/cosv/service/csv_ostream.cxx
source/cosv/service/datetime.cxx
source/cosv/service/std_outp.cxx
source/cosv/storage/dirchain.cxx
source/cosv/storage/file.cxx
source/cosv/storage/mbstream.cxx
source/cosv/storage/persist.cxx
source/cosv/storage/ploc.cxx
source/cosv/storage/ploc_dir.cxx
source/cosv/storage/plocroot.cxx
source/cosv/strings/str_types.cxx
source/cosv/strings/streamstr.cxx
source/cosv/strings/string.cxx
source/cosv/unittest/file_ut.cxx
source/cosv/unittest/makefile.mk
source/cosv/unittest/string_ut.cxx
source/cosv/unittest/ut.hxx
source/cosv/unittest/ut_main.cxx
source/udm/html/htmlitem.cxx
source/udm/inc/precomp.h
source/udm/unittest/makefile.mk
source/udm/unittest/test.cxx
source/udm/xml/xmlitem.cxx
Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA
56b8eddc25-Sep-2020 mseidel

Fixed typo (explicitely -> explicitly) and some more

Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1
42e3c32429-Mar-2018 Damjan Jovanovic

Port main/autodoc to gbuild.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1827951 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO415
b32aa35910-Mar-2018 Damjan Jovanovic

tr;dr: Don't use .map files for main/cppuhelper on Windows, control
symbol visibility using source-level declarations instead.

C++ symbols are mangled differently on Win64 and Win32, and

tr;dr: Don't use .map files for main/cppuhelper on Windows, control
symbol visibility using source-level declarations instead.

C++ symbols are mangled differently on Win64 and Win32, and extracting
new symbols from binaries and updating .DEF/.map files that control symbol
visibility is painful. Both Windows and *nix have moved from using .DEF
and .map files to using declarations in the source code instead, of the
form __declspec(dllexport) and __attribute__ ((visibility("default")))
(which we wrap in SAL_DLLPUBLIC_EXPORT).

The GBuild ported modules also have to replace .map files with source code
declarations (and all so far have), as the default symbol visibility in
GBuild is "hidden" and GBuild has no mechanism to use .map files so far.

So for the purpose of the Win64 port, but as a generally good idea and a
necessity for future GBuild ports, re-implement linker symbol visibility
in main/cppuhelper using SAL_DLLPUBLIC_EXPORT declarations in the source
code instead of using .map files. The purpose of .map files is to version
symbols in the ELF binary format on *nix instead of just controlling
visibility, so they still provide that benefit on *nix, but Windows has no
symbol versioning, all dmake does with .map files is convert them to
unversioned .DEF files, which are harder to maintain than source-level
declarations (as they are both mangled and in a separate file, and have
to be specified per method instead of only once per class).

This turned out to cause trouble, as our autodoc tool doesn't have a C
preprocessor, so the "CPPUHELPER_DLLPUBLIC" was breaking generating
documentation, which was breaking the build due to documentation
completeness checks in main/odk. Thus main/autodoc had to be patched to
allow command line parameters passed to it to specify parsing tokens to
ignore, and main/odk had to be patched to pass "CPPUHELPER_DLLPUBLIC" as
the token to ignore.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1826398 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO414, AOO413, AOO4121
30acf5e822-May-2016 pfg

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535-47bb-0310-9956-ffa450edef68

show more ...

4b0745c414-Feb-2016 Kay Schenk

#i126652# [Autodoc] Numeric character reference should ends with a semicolon
Patch by: hanya



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730411 13f79535-47b

#i126652# [Autodoc] Numeric character reference should ends with a semicolon
Patch by: hanya



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730411 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412, SNAPSHOT, AOO411
c64f2bbd06-Sep-2015 Pedro Giffuni

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/as

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68

show more ...

07a3d7f129-Apr-2014 Pedro Giffuni

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame the international nature of the code but
it is somewhat shameful that this wasn't done before.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591058 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO410, AOO410_Beta
a87170c620-Dec-2013 Jürgen Schmidt

#123891# allow OpenOffice since tag only

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1552559 13f79535-47bb-0310-9956-ffa450edef68

a0d53b3521-Nov-2013 Jürgen Schmidt

#122853# replace slist size>0 with not empty

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1544060 13f79535-47bb-0310-9956-ffa450edef68

b597708b18-Nov-2013 Herbert Dürr

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/op

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO401, AOO400
c945f25526-Jul-2013 Herbert Dürr

#i122853# replace use of size() method for single linked lists


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1507304 13f79535-47bb-0310-9956-ffa450edef68

6f51c32907-Feb-2013 Herbert Dürr

fix build for compilers supporting user-defined literals

User defined literals (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2378.pdf)
are already available in gcc 4.7 and cl

fix build for compilers supporting user-defined literals

User defined literals (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2378.pdf)
are already available in gcc 4.7 and clang 3.1 and this results in problems in code
where literal strings are concatenated without any whitespace inbetween.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1443509 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO340
507825dd25-Aug-2012 Ariel Constenla-Haile

#i120710# - Fix typo in license text

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1377315 13f79535-47bb-0310-9956-ffa450edef68

4f7d22dc19-Jul-2012 Ariel Constenla-Haile

#i120302# - Add support for "AOO" and "Apache OpenOffice" in @since IDL tag

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363563 13f79535-47bb-0310-9956-ffa450edef68

672406ed04-Jun-2012 Jürgen Schmidt

119677: correct copyright footer

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1345928 13f79535-47bb-0310-9956-ffa450edef68

9f22d7c229-Mar-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1307005 13f79535-47bb-0310-9956-ffa450edef68

2123d75712-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230717 13f79535-47bb-0310-9956-ffa450edef68

0841af7912-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230364 13f79535-47bb-0310-9956-ffa450edef68


source/display/html/aryattrs.cxx
source/display/html/cfrstd.cxx
source/display/html/chd_udk2.cxx
source/display/html/cre_link.cxx
source/display/html/dsply_cl.cxx
source/display/html/dsply_da.cxx
source/display/html/dsply_op.cxx
source/display/html/easywri.cxx
source/display/html/hd_chlst.cxx
source/display/html/hd_docu.cxx
source/display/html/hdimpl.cxx
source/display/html/html_kit.cxx
source/display/html/nav_main.cxx
source/display/html/navibar.cxx
source/display/html/opageenv.cxx
source/display/html/outfile.cxx
source/display/html/pagemake.cxx
source/display/html/pm_aldef.cxx
source/display/html/pm_base.cxx
source/display/html/pm_class.cxx
source/display/html/pm_help.cxx
source/display/html/pm_index.cxx
source/display/html/pm_namsp.cxx
source/display/html/pm_start.cxx
source/display/html/protarea.cxx
source/display/idl/hfi_constgroup.cxx
source/display/idl/hfi_interface.cxx
source/display/idl/hfi_linklist.cxx
source/display/idl/hfi_method.cxx
source/display/idl/hfi_property.cxx
source/display/idl/hfi_struct.cxx
source/display/idl/hfi_tag.cxx
source/display/idl/hfi_xrefpage.cxx
source/display/idl/hi_factory.cxx
source/display/kernel/displfct.cxx
source/display/toolkit/hf_docentry.cxx
source/display/toolkit/hf_funcdecl.cxx
source/display/toolkit/hf_linachain.cxx
source/display/toolkit/hf_navi_main.cxx
source/display/toolkit/hf_navi_sub.cxx
source/display/toolkit/hf_title.cxx
source/display/toolkit/htmlfile.cxx
source/display/toolkit/out_node.cxx
source/display/toolkit/out_position.cxx
source/display/toolkit/out_tree.cxx
source/display/toolkit/outputstack.cxx
d291ea2812-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230363 13f79535-47bb-0310-9956-ffa450edef68


source/ary/cpp/c_builtintype.cxx
source/ary/cpp/c_class.cxx
source/ary/cpp/c_de.cxx
source/ary/cpp/c_define.cxx
source/ary/cpp/c_enum.cxx
source/ary/cpp/c_enuval.cxx
source/ary/cpp/c_funct.cxx
source/ary/cpp/c_macro.cxx
source/ary/cpp/c_namesp.cxx
source/ary/cpp/c_osigna.cxx
source/ary/cpp/c_reposypart.cxx
source/ary/cpp/c_slots.cxx
source/ary/cpp/c_traits.cxx
source/ary/cpp/c_tydef.cxx
source/ary/cpp/c_vari.cxx
source/ary/cpp/ca_ce.cxx
source/ary/cpp/ca_def.cxx
source/ary/cpp/ca_type.cxx
source/ary/cpp/cs_ce.cxx
source/ary/cpp/cs_def.cxx
source/ary/cpp/cs_type.cxx
source/ary/cpp/namechain.cxx
source/ary/cpp/tplparam.cxx
source/ary/cpp/usedtype.cxx
source/ary/doc/d_boolean.cxx
source/ary/doc/d_docu.cxx
source/ary/doc/d_node.cxx
source/ary/doc/d_oldcppdocu.cxx
source/ary/doc/d_oldidldocu.cxx
source/ary/idl/i2s_calculator.cxx
source/ary/idl/i_attribute.cxx
source/ary/idl/i_ce2s.cxx
source/ary/idl/i_comrela.cxx
source/ary/idl/i_constant.cxx
source/ary/idl/i_enum.cxx
source/ary/idl/i_exception.cxx
source/ary/idl/i_function.cxx
source/ary/idl/i_interface.cxx
source/ary/idl/i_module.cxx
source/ary/idl/i_namelookup.cxx
source/ary/idl/i_param.cxx
source/ary/idl/i_property.cxx
source/ary/idl/i_reposypart.cxx
source/ary/idl/i_service.cxx
source/ary/idl/i_singleton.cxx
source/ary/idl/i_siservice.cxx
source/ary/idl/i_sisingleton.cxx
source/ary/idl/i_traits.cxx
source/ary/idl/i_typedef.cxx
source/ary/idl/ia_ce.cxx
source/ary/idl/ia_type.cxx
source/ary/idl/is_ce.cxx
source/ary/idl/it_explicit.cxx
source/ary/idl/it_tplparam.cxx
source/ary/idl/it_xnameroom.cxx
source/ary/info/all_dts.cxx
source/ary/info/all_tags.cxx
source/ary/info/ci_attag.cxx
source/ary/info/ci_text.cxx
source/ary/kernel/ary_disp.cxx
source/ary/kernel/cessentl.cxx
source/ary/kernel/namesort.cxx
source/ary/kernel/qualiname.cxx
source/ary/kernel/reposy.cxx
source/ary/kernel/slots.cxx
source/ary/loc/loc_dir.cxx
source/ary/loc/loc_file.cxx
source/ary/loc/loc_filebase.cxx
source/ary/loc/loc_root.cxx
source/ary/loc/loc_traits.cxx
source/ary/loc/loca_le.cxx
source/ary/loc/locs_le.cxx
source/ary_i/kernel/ci_atag2.cxx
source/ary_i/kernel/ci_text2.cxx
source/ary_i/kernel/d_token.cxx
source/display/idl/hfi_doc.cxx
source/display/idl/hfi_enum.cxx
source/display/idl/hfi_globalindex.cxx
source/display/idl/hfi_hierarchy.cxx
source/display/idl/hfi_module.cxx
source/display/idl/hfi_navibar.cxx
source/display/idl/hfi_service.cxx
source/display/idl/hfi_singleton.cxx
source/display/idl/hfi_siservice.cxx
source/display/idl/hfi_typedef.cxx
source/display/idl/hfi_typetext.cxx
source/display/idl/hi_ary.cxx
source/display/idl/hi_display.cxx
source/display/idl/hi_env.cxx
source/display/idl/hi_linkhelper.cxx
source/display/idl/hi_main.cxx
source/exes/adc_uni/adc_cl.cxx
source/exes/adc_uni/adc_cmd_parse.cxx
source/exes/adc_uni/adc_cmds.cxx
source/exes/adc_uni/adc_msg.cxx
source/exes/adc_uni/cmd_run.cxx
source/exes/adc_uni/cmd_sincedata.cxx
source/exes/adc_uni/main.cxx
source/tools/filecoll.cxx
source/tools/tkpchars.cxx
78bc99aa12-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230362 13f79535-47bb-0310-9956-ffa450edef68


source/ary/idl/i_ce.cxx
source/ary/idl/i_constgroup.cxx
source/ary/idl/i_enumvalue.cxx
source/ary/idl/i_struct.cxx
source/ary/idl/i_structelem.cxx
source/ary/idl/is_type.cxx
source/ary/idl/it_builtin.cxx
source/ary/idl/it_ce.cxx
source/ary/idl/it_sequence.cxx
source/parser/adoc/a_rdocu.cxx
source/parser/adoc/adoc_tok.cxx
source/parser/adoc/cx_a_std.cxx
source/parser/adoc/cx_a_sub.cxx
source/parser/adoc/docu_pe.cxx
source/parser/adoc/prs_adoc.cxx
source/parser/adoc/tk_attag.cxx
source/parser/adoc/tk_docw.cxx
source/parser/cpp/all_toks.cxx
source/parser/cpp/c_dealer.cxx
source/parser/cpp/c_rcode.cxx
source/parser/cpp/cpp_pe.cxx
source/parser/cpp/cx_base.cxx
source/parser/cpp/cx_c_pp.cxx
source/parser/cpp/cx_c_std.cxx
source/parser/cpp/cx_c_sub.cxx
source/parser/cpp/cxt2ary.cxx
source/parser/cpp/defdescr.cxx
source/parser/cpp/icprivow.cxx
source/parser/cpp/pe_base.cxx
source/parser/cpp/pe_class.cxx
source/parser/cpp/pe_defs.cxx
source/parser/cpp/pe_enum.cxx
source/parser/cpp/pe_enval.cxx
source/parser/cpp/pe_expr.cxx
source/parser/cpp/pe_file.cxx
source/parser/cpp/pe_funct.cxx
source/parser/cpp/pe_ignor.cxx
source/parser/cpp/pe_namsp.cxx
source/parser/cpp/pe_param.cxx
source/parser/cpp/pe_tpltp.cxx
source/parser/cpp/pe_tydef.cxx
source/parser/cpp/pe_type.cxx
source/parser/cpp/pe_vafu.cxx
source/parser/cpp/pe_vari.cxx
source/parser/cpp/preproc.cxx
source/parser/cpp/prs_cpp.cxx
source/parser/cpp/tkp_cpp.cxx
source/parser/kernel/parsefct.cxx
source/parser/kernel/x_docu.cxx
source/parser/kernel/x_parse.cxx
source/parser/semantic/parseenv.cxx
source/parser/tokens/stmstarr.cxx
source/parser/tokens/stmstate.cxx
source/parser/tokens/stmstfin.cxx
source/parser/tokens/tkp.cxx
source/parser/tokens/tkpcontx.cxx
source/parser/tokens/tkpstama.cxx
source/parser/tokens/tokdeal.cxx
source/parser_i/idl/cx_idlco.cxx
source/parser_i/idl/cx_sub.cxx
source/parser_i/idl/distrib.cxx
source/parser_i/idl/parsenv2.cxx
source/parser_i/idl/pe_attri.cxx
source/parser_i/idl/pe_const.cxx
source/parser_i/idl/pe_enum2.cxx
source/parser_i/idl/pe_evalu.cxx
source/parser_i/idl/pe_excp.cxx
source/parser_i/idl/pe_file2.cxx
source/parser_i/idl/pe_func2.cxx
source/parser_i/idl/pe_iface.cxx
source/parser_i/idl/pe_property.cxx
source/parser_i/idl/pe_selem.cxx
source/parser_i/idl/pe_servi.cxx
source/parser_i/idl/pe_singl.cxx
source/parser_i/idl/pe_struc.cxx
source/parser_i/idl/pe_tydf2.cxx
source/parser_i/idl/pe_type2.cxx
source/parser_i/idl/pe_vari2.cxx
source/parser_i/idl/pestate.cxx
source/parser_i/idl/semnode.cxx
source/parser_i/idl/tk_const.cxx
source/parser_i/idl/tk_ident.cxx
source/parser_i/idl/tk_keyw.cxx
source/parser_i/idl/tk_punct.cxx
source/parser_i/idl/tkp_uidl.cxx
source/parser_i/idl/unoidl.cxx
source/parser_i/idoc/cx_docu2.cxx
source/parser_i/idoc/cx_dsapi.cxx
source/parser_i/idoc/docu_pe2.cxx
source/parser_i/idoc/tk_atag2.cxx
source/parser_i/idoc/tk_docw2.cxx
source/parser_i/idoc/tk_html.cxx
source/parser_i/idoc/tk_xml.cxx
source/parser_i/tokens/stmstar2.cxx
source/parser_i/tokens/stmstat2.cxx
source/parser_i/tokens/stmstfi2.cxx
source/parser_i/tokens/tkp2.cxx
source/parser_i/tokens/tkpcont2.cxx
source/parser_i/tokens/tkpstam2.cxx
source/parser_i/tokens/x_parse2.cxx
7871dc3e11-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1229815 13f79535-47bb-0310-9956-ffa450edef68

1c78a5d606-Nov-2011 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1198400 13f79535-47bb-0310-9956-ffa450edef68


inc/ary/actions.hxx
inc/ary/ary.hxx
inc/ary/ary_disp.hxx
inc/ary/arygroup.hxx
inc/ary/ceslot.hxx
inc/ary/cessentl.hxx
inc/ary/cpp/c_builtintype.hxx
inc/ary/cpp/c_ce.hxx
inc/ary/cpp/c_class.hxx
inc/ary/cpp/c_cppentity.hxx
inc/ary/cpp/c_de.hxx
inc/ary/cpp/c_define.hxx
inc/ary/cpp/c_enum.hxx
inc/ary/cpp/c_enuval.hxx
inc/ary/cpp/c_funct.hxx
inc/ary/cpp/c_gate.hxx
inc/ary/cpp/c_macro.hxx
inc/ary/cpp/c_namesp.hxx
inc/ary/cpp/c_osigna.hxx
inc/ary/cpp/c_slntry.hxx
inc/ary/cpp/c_traits.hxx
inc/ary/cpp/c_tydef.hxx
inc/ary/cpp/c_type.hxx
inc/ary/cpp/c_types4cpp.hxx
inc/ary/cpp/c_vari.hxx
inc/ary/cpp/c_vfflag.hxx
inc/ary/cpp/cp_ce.hxx
inc/ary/cpp/cp_def.hxx
inc/ary/cpp/cp_type.hxx
inc/ary/cpp/inpcontx.hxx
inc/ary/cpp/namechain.hxx
inc/ary/cpp/usedtype.hxx
inc/ary/doc/d_boolean.hxx
inc/ary/doc/d_docu.hxx
inc/ary/doc/d_node.hxx
inc/ary/doc/d_oldcppdocu.hxx
inc/ary/doc/d_oldidldocu.hxx
inc/ary/doc/d_parametrized.hxx
inc/ary/doc/d_types4doc.hxx
inc/ary/doc/ht/dht_interpreter.hxx
inc/ary/entity.hxx
inc/ary/getncast.hxx
inc/ary/idl/i_attribute.hxx
inc/ary/idl/i_ce.hxx
inc/ary/idl/i_ce2s.hxx
inc/ary/idl/i_comrela.hxx
inc/ary/idl/i_constant.hxx
inc/ary/idl/i_constgroup.hxx
inc/ary/idl/i_enum.hxx
inc/ary/idl/i_enumvalue.hxx
inc/ary/idl/i_exception.hxx
inc/ary/idl/i_function.hxx
inc/ary/idl/i_gate.hxx
inc/ary/idl/i_interface.hxx
inc/ary/idl/i_module.hxx
inc/ary/idl/i_namelookup.hxx
inc/ary/idl/i_param.hxx
inc/ary/idl/i_property.hxx
inc/ary/idl/i_service.hxx
inc/ary/idl/i_singleton.hxx
inc/ary/idl/i_siservice.hxx
inc/ary/idl/i_sisingleton.hxx
inc/ary/idl/i_struct.hxx
inc/ary/idl/i_structelem.hxx
inc/ary/idl/i_traits.hxx
inc/ary/idl/i_type.hxx
inc/ary/idl/i_typedef.hxx
inc/ary/idl/i_types4idl.hxx
inc/ary/idl/ik_attribute.hxx
inc/ary/idl/ik_ce.hxx
inc/ary/idl/ik_constant.hxx
inc/ary/idl/ik_constgroup.hxx
inc/ary/idl/ik_enum.hxx
inc/ary/idl/ik_enumvalue.hxx
inc/ary/idl/ik_exception.hxx
inc/ary/idl/ik_function.hxx
inc/ary/idl/ik_interface.hxx
inc/ary/idl/ik_module.hxx
inc/ary/idl/ik_property.hxx
inc/ary/idl/ik_service.hxx
inc/ary/idl/ik_singleton.hxx
inc/ary/idl/ik_siservice.hxx
inc/ary/idl/ik_sisingleton.hxx
inc/ary/idl/ik_struct.hxx
inc/ary/idl/ik_structelem.hxx
inc/ary/idl/ik_typedef.hxx
inc/ary/idl/ip_ce.hxx
inc/ary/idl/ip_type.hxx
inc/ary/info/all_dts.hxx
inc/ary/info/all_tags.hxx
inc/ary/info/ci_attag.hxx
inc/ary/info/ci_text.hxx
inc/ary/info/docstore.hxx
inc/ary/info/infodisp.hxx
inc/ary/info/inftypes.hxx
inc/ary/itrange.hxx
inc/ary/loc/loc_dir.hxx
inc/ary/loc/loc_file.hxx
inc/ary/loc/loc_filebase.hxx
inc/ary/loc/loc_le.hxx
inc/ary/loc/loc_root.hxx
inc/ary/loc/loc_traits.hxx
inc/ary/loc/loc_types4loc.hxx
inc/ary/loc/locp_le.hxx
inc/ary/namesort.hxx
inc/ary/object.hxx
inc/ary/qualiname.hxx
inc/ary/sequentialids.hxx
inc/ary/stdconstiter.hxx
inc/ary/symtreenode.hxx
inc/ary/types.hxx
inc/ary/udmhost.hxx
inc/ary_i/ci_atag2.hxx
inc/ary_i/ci_text2.hxx
inc/ary_i/d_token.hxx
inc/ary_i/disdocum.hxx
inc/autodoc/displaying.hxx
inc/autodoc/dsp_html_std.hxx
inc/autodoc/dsp_txt_flist.hxx
inc/autodoc/filecoli.hxx
inc/autodoc/parsing.hxx
inc/autodoc/prs_code.hxx
inc/autodoc/prs_docu.hxx
inc/autodoc/x_parsing.hxx
inc/display/corframe.hxx
inc/parser/parser.hxx
inc/parser/parserinfo.hxx
inc/parser/unoidl.hxx
source/ary/cpp/c_reposypart.hxx
source/ary/cpp/c_slots.hxx
source/ary/cpp/ca_ce.hxx
source/ary/cpp/ca_def.hxx
source/ary/cpp/ca_type.hxx
source/ary/cpp/cs_ce.hxx
source/ary/cpp/cs_def.hxx
source/ary/cpp/cs_type.hxx
source/ary/cpp/tplparam.hxx
source/ary/idl/i2s_calculator.hxx
source/ary/idl/i_nnfinder.hxx
source/ary/idl/i_reposypart.hxx
source/ary/idl/ia_ce.hxx
source/ary/idl/ia_type.hxx
source/ary/idl/is_ce.hxx
source/ary/idl/is_type.hxx
source/ary/idl/it_builtin.hxx
source/ary/idl/it_ce.hxx
source/ary/idl/it_explicit.hxx
source/ary/idl/it_named.hxx
source/ary/idl/it_sequence.hxx
source/ary/idl/it_tplparam.hxx
source/ary/idl/it_xnameroom.hxx
source/ary/inc/cpp_internalgate.hxx
source/ary/inc/cross_refs.hxx
source/ary/inc/idl_internalgate.hxx
source/ary/inc/idsort.hxx
source/ary/inc/loc_internalgate.hxx
source/ary/inc/nametreenode.hxx
source/ary/inc/reposy.hxx
source/ary/inc/sci_impl.hxx
source/ary/inc/slots.hxx
source/ary/inc/sorted_idset.hxx
source/ary/inc/sortedids.hxx
source/ary/inc/store/s_base.hxx
source/ary/inc/store/s_iterator.hxx
source/ary/inc/store/s_storage.hxx
source/ary/inc/traits_impl.hxx
source/ary/loc/loca_le.hxx
source/ary/loc/locs_le.hxx
source/display/html/aryattrs.hxx
source/display/html/cre_link.hxx
source/display/html/dsply_cl.hxx
source/display/html/dsply_da.hxx
source/display/html/dsply_op.hxx
source/display/html/easywri.hxx
source/display/html/hd_chlst.hxx
source/display/html/hd_docu.hxx
source/display/html/hdimpl.hxx
source/display/html/html_kit.hxx
source/display/html/nav_main.hxx
source/display/html/navibar.hxx
source/display/html/opageenv.hxx
source/display/html/outfile.hxx
source/display/html/pagemake.hxx
source/display/html/pm_aldef.hxx
source/display/html/pm_base.hxx
source/display/html/pm_class.hxx
source/display/html/pm_help.hxx
source/display/html/pm_index.hxx
source/display/html/pm_namsp.hxx
source/display/html/pm_start.hxx
source/display/html/protarea.hxx
source/display/html/strconst.hxx
source/display/idl/hfi_constgroup.hxx
source/display/idl/hfi_doc.hxx
source/display/idl/hfi_enum.hxx
source/display/idl/hfi_globalindex.hxx
source/display/idl/hfi_hierarchy.hxx
source/display/idl/hfi_interface.hxx
source/display/idl/hfi_linklist.hxx
source/display/idl/hfi_method.hxx
source/display/idl/hfi_module.hxx
source/display/idl/hfi_navibar.hxx
source/display/idl/hfi_property.hxx
source/display/idl/hfi_service.hxx
source/display/idl/hfi_singleton.hxx
source/display/idl/hfi_siservice.hxx
source/display/idl/hfi_struct.hxx
source/display/idl/hfi_tag.hxx
source/display/idl/hfi_typedef.hxx
source/display/idl/hfi_typetext.hxx
source/display/idl/hfi_xrefpage.hxx
source/display/idl/hi_ary.hxx
source/display/idl/hi_env.hxx
source/display/idl/hi_factory.hxx
source/display/idl/hi_linkhelper.hxx
source/display/idl/hi_main.hxx
source/display/inc/cfrstd.hxx
source/display/inc/html/chd_udk2.hxx
source/display/inc/idl/hi_display.hxx
source/display/inc/toolkit/hf_docentry.hxx
source/display/inc/toolkit/hf_funcdecl.hxx
source/display/inc/toolkit/hf_linachain.hxx
source/display/inc/toolkit/hf_navi_main.hxx
source/display/inc/toolkit/hf_navi_sub.hxx
source/display/inc/toolkit/hf_title.hxx
source/display/inc/toolkit/htmlfactory.hxx
source/display/inc/toolkit/htmlfile.hxx
source/display/inc/toolkit/out_node.hxx
source/display/inc/toolkit/out_position.hxx
source/display/inc/toolkit/out_tree.hxx
source/display/inc/toolkit/outputstack.hxx
source/display/kernel/displfct.hxx
source/exes/adc_uni/adc_cmd.hxx
source/exes/adc_uni/adc_cmd_parse.hxx
source/exes/adc_uni/adc_cmds.hxx
source/exes/adc_uni/cmd_run.hxx
source/exes/adc_uni/cmd_sincedata.hxx
source/inc/adc_cl.hxx
source/inc/adc_msg.hxx
source/inc/docu_node_ids.hxx
source/inc/estack.hxx
source/inc/luxenum.hxx
source/inc/manip.hxx
source/inc/prprpr.hxx
source/inc/tools/filecoll.hxx
source/inc/tools/tkpchars.hxx
source/parser/cpp/all_toks.hxx
source/parser/cpp/c_dealer.hxx
source/parser/cpp/c_rcode.hxx
source/parser/cpp/cpp_pe.hxx
source/parser/cpp/cpp_tok.hxx
source/parser/cpp/cx_base.hxx
source/parser/cpp/cx_c_pp.hxx
source/parser/cpp/cx_c_std.hxx
source/parser/cpp/cx_c_sub.hxx
source/parser/cpp/cxt2ary.hxx
source/parser/cpp/defdescr.hxx
source/parser/cpp/fevnthdl.hxx
source/parser/cpp/icprivow.hxx
source/parser/cpp/pe_base.hxx
source/parser/cpp/pe_class.hxx
source/parser/cpp/pe_defs.hxx
source/parser/cpp/pe_enum.hxx
source/parser/cpp/pe_enval.hxx
source/parser/cpp/pe_expr.hxx
source/parser/cpp/pe_file.hxx
source/parser/cpp/pe_funct.hxx
source/parser/cpp/pe_ignor.hxx
source/parser/cpp/pe_namsp.hxx
source/parser/cpp/pe_param.hxx
source/parser/cpp/pe_tpltp.hxx
source/parser/cpp/pe_tydef.hxx
source/parser/cpp/pe_type.hxx
source/parser/cpp/pe_vafu.hxx
source/parser/cpp/pe_vari.hxx
source/parser/cpp/pev.hxx
source/parser/cpp/preproc.hxx
source/parser/cpp/sdocdist.hxx
source/parser/cpp/sfscope.hxx
source/parser/cpp/sownstck.hxx
source/parser/cpp/srecover.hxx
source/parser/cpp/tkp_cpp.hxx
source/parser/cpp/tokintpr.hxx
source/parser/inc/adoc/a_rdocu.hxx
source/parser/inc/adoc/adoc_tok.hxx
source/parser/inc/adoc/atokdeal.hxx
source/parser/inc/adoc/cx_a_std.hxx
source/parser/inc/adoc/cx_a_sub.hxx
source/parser/inc/adoc/docu_pe.hxx
source/parser/inc/adoc/prs_adoc.hxx
source/parser/inc/adoc/tk_attag.hxx
source/parser/inc/adoc/tk_docw.hxx
source/parser/inc/adoc/tokintpr.hxx
source/parser/inc/cpp/ctokdeal.hxx
source/parser/inc/cpp/prs_cpp.hxx
source/parser/inc/doc_deal.hxx
source/parser/inc/semantic/callf.hxx
source/parser/inc/semantic/parseenv.hxx
source/parser/inc/semantic/sub_pe.hxx
source/parser/inc/semantic/sub_peu.hxx
source/parser/inc/tokens/parseinc.hxx
source/parser/inc/tokens/stmstarr.hxx
source/parser/inc/tokens/stmstate.hxx
source/parser/inc/tokens/stmstfin.hxx
source/parser/inc/tokens/tkp.hxx
source/parser/inc/tokens/tkpcontx.hxx
source/parser/inc/tokens/tkpstama.hxx
source/parser/inc/tokens/tokdeal.hxx
source/parser/inc/tokens/token.hxx
source/parser/inc/tokens/tokproct.hxx
source/parser/inc/x_docu.hxx
source/parser/inc/x_parse.hxx
source/parser/kernel/parsefct.hxx
source/parser_i/inc/s2_dsapi/cx_docu2.hxx
source/parser_i/inc/s2_dsapi/cx_dsapi.hxx
source/parser_i/inc/s2_dsapi/docu_pe2.hxx
source/parser_i/inc/s2_dsapi/dsapitok.hxx
source/parser_i/inc/s2_dsapi/tk_atag2.hxx
source/parser_i/inc/s2_dsapi/tk_docw2.hxx
source/parser_i/inc/s2_dsapi/tk_html.hxx
source/parser_i/inc/s2_dsapi/tk_xml.hxx
source/parser_i/inc/s2_dsapi/tokintpr.hxx
source/parser_i/inc/s2_dsapi/tokrecv.hxx
source/parser_i/inc/s2_luidl/cx_idlco.hxx
source/parser_i/inc/s2_luidl/cx_sub.hxx
source/parser_i/inc/s2_luidl/distrib.hxx
source/parser_i/inc/s2_luidl/parsenv2.hxx
source/parser_i/inc/s2_luidl/pe_attri.hxx
source/parser_i/inc/s2_luidl/pe_const.hxx
source/parser_i/inc/s2_luidl/pe_enum2.hxx
source/parser_i/inc/s2_luidl/pe_evalu.hxx
source/parser_i/inc/s2_luidl/pe_excp.hxx
source/parser_i/inc/s2_luidl/pe_file2.hxx
source/parser_i/inc/s2_luidl/pe_func2.hxx
source/parser_i/inc/s2_luidl/pe_iface.hxx
source/parser_i/inc/s2_luidl/pe_modul.hxx
source/parser_i/inc/s2_luidl/pe_property.hxx
source/parser_i/inc/s2_luidl/pe_selem.hxx
source/parser_i/inc/s2_luidl/pe_servi.hxx
source/parser_i/inc/s2_luidl/pe_singl.hxx
source/parser_i/inc/s2_luidl/pe_struc.hxx
source/parser_i/inc/s2_luidl/pe_tydf2.hxx
source/parser_i/inc/s2_luidl/pe_type2.hxx
source/parser_i/inc/s2_luidl/pe_vari2.hxx
source/parser_i/inc/s2_luidl/pestate.hxx
source/parser_i/inc/s2_luidl/semnode.hxx
source/parser_i/inc/s2_luidl/smp_uidl.hxx
source/parser_i/inc/s2_luidl/tk_const.hxx
source/parser_i/inc/s2_luidl/tk_ident.hxx
source/parser_i/inc/s2_luidl/tk_keyw.hxx
source/parser_i/inc/s2_luidl/tk_punct.hxx
source/parser_i/inc/s2_luidl/tkp_uidl.hxx
source/parser_i/inc/s2_luidl/tokintpr.hxx
source/parser_i/inc/s2_luidl/tokproct.hxx
source/parser_i/inc/s2_luidl/tokrecv.hxx
source/parser_i/inc/s2_luidl/uidl_tok.hxx
source/parser_i/inc/semantic/parsenv2.hxx
source/parser_i/inc/tokens/stmstar2.hxx
source/parser_i/inc/tokens/stmstat2.hxx
source/parser_i/inc/tokens/stmstfi2.hxx
source/parser_i/inc/tokens/tkp2.hxx
source/parser_i/inc/tokens/tkpcont2.hxx
source/parser_i/inc/tokens/tkpstam2.hxx
source/parser_i/inc/tokens/token2.hxx
source/parser_i/inc/x_parse2.hxx
7925e91228-Aug-2011 Michael Stahl

fix up code so it builds with GCC 4.6:

put user-defined default constructors in some classes.
remove "mutable" from reference variables.
include stddef.h where size_t or ptrdiff_t

fix up code so it builds with GCC 4.6:

put user-defined default constructors in some classes.
remove "mutable" from reference variables.
include stddef.h where size_t or ptrdiff_t was not defined.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162609 13f79535-47bb-0310-9956-ffa450edef68

show more ...

889cced128-Aug-2011 Eike Rathke

fix build breakers unxlngx6.pro gcc 4.6.1 (Debian wheezy amd64)

Builds up to but not including offapi.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162554 13f79

fix build breakers unxlngx6.pro gcc 4.6.1 (Debian wheezy amd64)

Builds up to but not including offapi.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162554 13f79535-47bb-0310-9956-ffa450edef68

show more ...

12