Age | Commit message (Collapse) | Author |
|
This changes all generated API headers (.hpp and .hdl) to use a
namespace alias 'css' instead of the pointlessly long com::sun::star
Makes the change in cppumaker & associated tools, adds a global
namespace alias definition in sal/types.h, and removes a kiloton
of local, now pointless-to-harmful versions of that alias from all
over the code.
Change-Id: Ice5a644a6b971a981f01dc0589d48f5add31cc0f
|
|
Change-Id: I10f395f90d554d0ec26fe9f2654ae839e21c7ee5
|
|
Change-Id: I42479b4bade5111e38d69f04c889c166f340d5ba
|
|
parsing 1000s of line of code is hard enough without having to fight
with weird indentation and irregular formatting.
So as the review progress, in order to follow the code, cosmetic changes
were made...
In order to minimize the task of the reviewers and allow them to
concentrate on what matter, an effort is made to collect these
cosmetic changes into this separate commit.
Change-Id: I3c9b04a0150d0d0a048c2e976fe24de4f2b6b98a
|
|
Change-Id: I6607bfe8b6bf4d29ffd01cd88a19af5e53d616b5
|
|
Change-Id: I17246e036e821c4a8be36cf322dcf23285e3d97a
|
|
Change-Id: I215c84967a53dbadba86913d24bc4aadc6543467
|
|
Change-Id: I0b393c97f8781d99bf5d3be4065864379eab004c
Reviewed-on: https://gerrit.libreoffice.org/594
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
|
|
Change-Id: I86e5b49ccc9737517ecde17dbdaba44eeaee2371
|
|
Change-Id: I08a58468a3ce75038b65a8d9641cc2138541a7f5
|
|
Change-Id: Ie8a128db35bebcdcee5eda984a7875339418d9bb
|
|
Change-Id: Iebed1c159606ab695b049032da5a3509e468fb91
|
|
Change-Id: I773678437aae6577f22078e97bcac1377c4307d8
Reviewed-on: https://gerrit.libreoffice.org/495
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Kohei Yoshida <kohei.yoshida@gmail.com>
|
|
Change-Id: I38141187c4f0809343a93c5765c0773d2321968a
|
|
Change-Id: Ia6f5bf7c3372515c2796d239aeb610fbe6f29f8d
|
|
Change-Id: I9fdefd428b858fd5581412d6f8e896a0eb680fef
|
|
Change-Id: Ifec201efc4e97baf2d36d66c4ae6967eadd6134c
|
|
Change-Id: I584ff580e3c8eee401f07c858ecbd63e5b0bf980
|
|
118568: switch to using ucpp
Patch contributed by Juergen Schmidt
http://svn.apache.org/viewvc?view=revision&revision=1209396
|
|
Change-Id: I802d142ae93b3e9c7d42ab98d5c757df94a82196
|
|
Change-Id: Ic36b131ee9964a6671f7f41e1cad1631c43ad565
|
|
Change-Id: I48e193322967fb75e93eaf81e9e2110d3056f92a
|
|
Most of them in hrc files.
Change-Id: I3944f6ed9befd2b498385f61b851790362221a4f
|
|
|
|
Change-Id: I88de7a942fbc9e0c51a3261236f5203f037d2392
|
|
|
|
|
|
|
|
...which has the necessary features to support it.
Change a lot of classes to either contain a protected non-virtual dtor
(which is backwards compatible, so even works for cppumaker-generated
UNO headers) or a public virtual one.
cppuhelper/propertysetmixin.hxx still needs to disable the warning, as
the relevant class has a non-virtual dtor but friends, which would still
cause GCC to warn.
Includes a patch for libcmis, intended to be upstreamed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC)
is used to annotate legitimately unused parameters, so that static
analysis tools can tell legitimately unused parameters from truly
unnecessary ones. To that end, some patches for external modules
are also added, that are only applied when compiling with GCC and
add necessary __attribute__ ((unused)) in headers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|