Age | Commit message (Collapse) | Author |
|
Change-Id: I76b531238d86c9f2ed444d230638ffb9a2d62618
|
|
Change-Id: I3a1281c756305f16d193210839ca6b826662698e
|
|
Change-Id: I1c0c89f515f06bd14b659836d777aa705a6f03d6
|
|
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
|
|
Change-Id: Icaed7afe8f2463ffc16421642ff2e073fb4b7cc1
|
|
Change-Id: Ic507170e94d08155430601658689b3d7b96e0f80
|
|
Apparently doxygen doesn't like XML-style empty elements.
Change-Id: I0fe8105a196fa3cf5b980f0b6f18933adf8a1d53
|
|
Change-Id: Iff23e173e4726682c719c5de303fded0bc671bd3
|
|
Change-Id: Ied26925485b2be649cabafff338e6d78c7bd17b3
|
|
Most of these are just cosmetic, and middot can be replaced by cdot.
Change-Id: I39a45a2d5d0f10b5b0e793b6fa5e0c041c4669d5
|
|
Only useful ones appear to be <tbody> and <thead> which doxygen doesn't
support but we only use those in 3 places so who cares.
Change-Id: I374f7d208873a8436fe76e0f800ce18df5b188b3
|
|
<listing> is called @code / @endcode in doxygen.
@example requires a file name in doxygen.
Also adapt various silly examples that use tools String in C++ or manual
syntax highlighting in Java etc.
Change-Id: I23cff1b688001f438526a6a1364cc5f754b504f7
|
|
Apparently <module> is yet another imaginary thing autodoc doesn't know.
Change-Id: I25382f8c2ae024d29ae20ab3b85740e9d6a9e9da
|
|
It is amazing what some people believe autodoc supports.
Also, com::sun::star::uno::Any does not exist in IDL, that is part of
the C++ language binding.
Change-Id: I1f1f5cf5d27663ace6ff618ecbecb41fd2dfa1fc
|
|
sed -i "s,<method>\([^<]\+\)</method>,\1,g"
Change-Id: Ic3eef0c03e512f7d607a87c58f9f01626f5a57a1
|
|
sed -i "s,<method>\([^<]\+[^)]\)</method>,\1(),g"
Change-Id: Ie443efb5b283067bc5475810f6848061900d8401
|
|
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g'
Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
|
|
sed -i 's,<\(true\|false\|void\)/>,`\U\1`,g'
Change-Id: I87a6e81ff22b47ea979322d01c49350892d3945f
|
|
sed -i 's,<atom>\([^<]\+\)</atom>,`\1`,g'
Change-Id: I530fe998b0c422e83c4324807d42700126bc9883
|
|
sed -i 's,<method scope="\([^"]*\)">\([^<]\+\)</method>,\1::\2,g'
Change-Id: I09ee9ecae922e0b28730d1689b802e6041b3ceed
|
|
sed -i 's,<method scope="\([^"]*\)">\([^<][^)]\+\)</method>,\1::\2(),g'
Change-Id: I7ceb805d67a79c297fb5f044a8fb226ec2fb366c
|
|
sed -i "s,<method>\([a-z][^<]\+\)</method>,\1,g"
Change-Id: I9483d63cce4afd168d47a465b367aed3da45d64b
|
|
What is sad about this is that autodoc doesn't even support <method>.
sed -i "s,<method>\([a-z][^<]\+[^)]\)</method>,\1(),g"
Change-Id: I702ef71423ced1d5195f2e0535e73b1bb4d3f6f2
|
|
... which does not seem to do anything anyway.
sed -i "s,<arg>\([^<]\+\)</arg>,\1,g"
Change-Id: I90bcf81ea046bc88297ed8eadc560ad31d19830b
|
|
This one is apparently often abused to link to a constant group, while
it can only link to constants within a group.
sed -i "s,<const>\([^<]\+\)</const>,\1,g"
Change-Id: Ic3d8099751340e4b046298c861bb659beb351eaf
|
|
sed -i 's,<const scope="\([^"]*\)">\([^<]\+\)</const>,\1::\2,g'
Change-Id: I964acc2725e8a6680f5bd8412014e5660510749e
|
|
sed -i 's,<member scope="\([^"]*\)">\([^<]\+\)</member>,\1::\2,g'
Change-Id: Idbe0adc5a88e430c99257d4d61e540bf0eeaea8f
|
|
sed -i "s,<member>\([^<]\+\)</member>,\1,g"
Change-Id: I74c80f5aa610477fab28faec52e55c3137984aec
|
|
These member variables need a # prefix.
sed -i "s,<member>\([^<:]\+[^)]\)</member>,#\1,g"
Change-Id: I721b90f4edae32b5a362479bdbd60423f6427364
|
|
sed -i 's,<member scope="\([^"]*\)">\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1::\2(),g'
Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a
|
|
Doxygen would probably recognize these without () too but add them for
consistency.
sed -i "s,<member>\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1(),g"
Change-Id: I2615b99265b75633459e35164e54d9da7fe76b85
|
|
Doxygen will only recognize a un-qualified method name as such if it is
followed by "()".
sed -i "s,<member>\([a-z][^<]\+[^)]\)</member>,\1(),g"
Change-Id: I69bc17849e76f3a3d91c6daf0f1be8168a83cfc5
|
|
This looks much better now.
sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g'
Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80
|
|
Doxygen does not know type element and will recognize strings that
contain capital letter (all API types do) automatically as type.
This patch removes 15k doxygen warnings.
git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1,"
Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
|
|
Change-Id: I121f0d3d646ce434ea1451a94a5c911005dc21f9
|
|
This reverts commit 02021163dbbcc8904da0b2138c8b53684dcc8ab4. The filter
appears to be split in two (com.sun.star.comp.oox.ppt.PowerPointImport
implementation oox::ppt::PowerPointImport from include/oox/ppt/pptimport.hxx for
im-/export, for export calling com.sun.star.comp.Impress.oox.PowerPointExport
implementation PowerPointExport from sd/source/filter/eppt/epptooxml.hxx) for no
good reason, so the com.sun.star.oox.PowerPointExport new-style service is
supporting a hack that should rather be cleaned up.
Conflicts:
offapi/UnoApi_offapi.mk
Change-Id: I875192a68a8e3458dbfd74b4981a6a2e86ce44d7
|
|
Service already existed, just needed an IDL file.
Change-Id: Ief5563e53c7331b65dd429079180c4eed2f2c071
|
|
by creating a common service interface for them to implement
Change-Id: Icec85c55ed0ac13a6c785fdad6b0cd9c11878ba5
|
|
The service already existed, it just needed an IDL file.
Change-Id: I10219da7292db5e746a89028ddc4fabb069ac388
|
|
Change-Id: I6cdef298d69fef388e79b241abbe3a9a03d61492
|
|
The service already existed, it just needed an IDL file.
Change-Id: I9553c8e7c4922f2106bc13034e0cc35669b28b7e
|
|
Change-Id: I9e9f513afe37ccf34f2d5762a27b4a728fd24f36
Reviewed-on: https://gerrit.libreoffice.org/4136
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
|
|
Change-Id: I99051830c4393b420125332e787c3abdc5a6aa61
|
|
The reason to have both export-only XclExpXmlStream
("com.sun.star.comp.oox.ExcelFilterExport") and im-/export oox::xls::ExcelFilter
("com.sun.star.comp.oox.xls.ExcelFilter"), where the latter uses the former to
implement export, appears to be historic.
Get rid of the former service, but keep it as an independent C++ class for now
(still also deriving from XmlFilterBase)---this can likely be cleaned up by
somebdoy versed in those XmlFilterBase details.
With the last use (in oox::xls::ExcelFilter, to instantiate XclExpXmlStream) of
the recently introduced com.sun.star.oox.ExcelFilterExport new-style service
gone now, remove that service again.
Change-Id: Id3adacd293cbe4390242827615f074d4bbe9d85a
|
|
Added ::com::sun::star::lang::XComponent. IDL documentation taken from
http://wiki.openoffice.org/wiki/Framework/Tutorial/Statusbar_Controller#Status_bar_controller_service
(cherry picked from commit f3dc398e002926792a0c6160691d46eb75cad236)
Conflicts:
framework/inc/uielement/statusbarmanager.hxx
framework/source/uielement/statusbarmanager.cxx
Change-Id: Id2d768250632b12b834602a33a4e9923cec9bd3f
|
|
...recently introduced with c75a46fbd0ba4daf857fcd7d70badeed5aae8e28 "fdo#46808,
use DialogProvider service constructor." The general theme of this additional
ctor appears to be more about "Scripting" than "Listener," and the DialogLib
argument is actually expected to be of XNameContainer type.
Change-Id: Iea7d906d9b2ffc3b3ee5b2cbfaf7c58191037c9b
|
|
(Preventing documentation of macros via @cond ... @endcond is apparently at
least broken in Doxygen 1.8.3 and working in Doxygen 1.8.4.)
Change-Id: I2ee582119dba2c3d27db5298786d3076921af46d
|
|
The services already existed, they just needed IDL files.
API CHANGE:
The return type of XUIConfigurationManager#getShortcutManager()
is now XAcceleratorConfiguration instead of XInterface.
This should not be a problem because XUIConfigurationManager is
unpublished and the client code was relying on the service
returning that type.
Change-Id: I399fe35de3394b02a4166b75eb7ff93b28be8bef
|
|
Change-Id: I46c3950aee336548d6e0acc6a7d1da655c158175
|
|
Change-Id: I9a5256c8dbacda60167403b4e26900588943a9b2
|