Age | Commit message (Collapse) | Author | Files | Lines |
|
Change-Id: Ic8d33142b6bd7d271e94ec93661f0260bb2ea6e2
|
|
I removed the fprintf statements and replaced them with
SAL_WARN statements.
Change-Id: Id75e310e3a95b249fdf92a4dd5a9bcf1b7fb9be6
Reviewed-on: https://gerrit.libreoffice.org/22984
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
|
|
Change-Id: I70a84f777e714bcc20c2d7b06b918e3be0f3ce4a
|
|
Change-Id: I006e3c8f411b480917d9cfb9c4f3d082b79c833d
|
|
Change-Id: Ic89c5fb56e1f11fa17f6014a8c9722592b144337
|
|
Change-Id: If57390510dde4d166be3141b9f658a7453755d3f
Reviewed-on: https://gerrit.libreoffice.org/19815
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
|
|
Change-Id: Ib969223cb5c8acdad0e97ff9b944703d3ee43825
|
|
Change-Id: Id57ccff7ea6cf5c7053b51268b1190f5459bb357
|
|
Change-Id: I50ba6a836473961d952ed88e56532501469c5368
|
|
Change-Id: I0a6787379317e5077c5a4520e5144fe091a01538
|
|
Change-Id: Ieaf67cf597e05dbae5affa153af907fda4462a41
Reviewed-on: https://gerrit.libreoffice.org/16295
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
|
|
Change-Id: I1167d0ce6b6f6e48309d0551c1d2a283d79546a7
|
|
Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796
|
|
Change-Id: I70a86543c0269cbaeefc9cbe1da30c2ad7e48333
|
|
Change-Id: Id4bd8bb8361204ae281a090840b08c502e5b4a7a
|
|
Added clear() method to OString and OUString class, Updated appropriate call-sites.
Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959
Reviewed-on: https://gerrit.libreoffice.org/12164
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
|
|
It turns out that almost none of them were necessary.
Change-Id: I1311ed28409c682b57ea8d149bcbaf2c49133e83
Reviewed-on: https://gerrit.libreoffice.org/12133
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
|
|
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
|
|
Change-Id: I83a8671e90431bbc4f41392f062d37c452b018ff
|
|
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
|
|
convert OUString::compareTo usage to equals to startsWith where it
is more appropriate
Change-Id: I6f5b5b7942429c0099ad082ba4984fd18e422121
|
|
Look for code like:
xxx ? yyy : false;
Which can be simplified to:
xxx && yyy
Change-Id: Ia33c0e452aa28af3f0658a5382895aaad0246b4d
|
|
Change-Id: I18125ac6c58c89f76c3a6cfb3a7ee77b1059aeb1
|
|
i.e. convert "::sal_Bool" to "sal_Bool"
Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
|
|
(Following on from loplugin:passstringbyref)
Change-Id: I9100f51aa7420b237c84de7d36d2374ac6612d00
|
|
Change-Id: Ic88d78418fb9380dece316544e0afb4d8660f8e6
|
|
Change-Id: I3b67edd5ba4541a65cb0916abea6db1362c32afd
|
|
Change-Id: Icf8df0829aecf838d0037a3393f27e90c23b9548
|
|
Change-Id: Ib8047c4606874d5bc6ce024bf34ee518cc51581b
Reviewed-on: https://gerrit.libreoffice.org/8332
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb
Reviewed-on: https://gerrit.libreoffice.org/8182
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: Ie62a7d184f4982a5164c183f6e38d534b94df1bd
|
|
Change-Id: I2cacac2aa7e48b3b9d8d060137d5c6d6f1d06b3f
|
|
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
|
|
Change-Id: I8fb3c25cd583b688104a0ee8620696e7b2958ab5
|
|
This is both an optimisation and a cleanup.
This converts code like
aStr.indexOf("XX") == 0
to
aStr.startsWith("XX")
and converts code like
aStr.lastIndexOf("XXX") == aStr.getLength() - 3
to
aStr.endsWith("XXX")
Note that in general
aStr.lastIndexOf("X") == aStr.getLength() - 1
converts to
aStr.isEmpty() || aStr.endsWith("X")
so I used the surrounding context to determine if aStr could be empty
when modifying the code.
Change-Id: I22cb8ca7c2a4d0288b001f72adb27fd63af87669
|
|
This reverts commit c4113906d7f15f8aa0eb385a4caf474b3505ede1, which is not
necessary after all with recent "Hook SourceProvider into unoidl::loadProvider."
|
|
Change-Id: I420847515b6b691ae81a249a8820cf9a3d132372
|
|
Minimum requirement has been Java 1.5 for years now.
Change-Id: Id512507db1fc12c92d8f7662505eda6866da2fc6
|
|
Change-Id: I598698948a3543f1c020cc4a4b8db8799eb314a5
|
|
Change-Id: I77416a9e275dc204b3b82807d27b5276ad4f497f
|
|
Change-Id: I202c53a094ac7ddcbd1fa0d2367058aba56820ed
|
|
Change-Id: I6e35b91092239275694eec3666b076f7ff7e54f6
Reviewed-on: https://gerrit.libreoffice.org/4335
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
|
|
...used for now to transport @deprecated information.
Also, improve Idx-String (formerly Idx-Name, but also used for UTF-8 annotations
now) format, using the 0x80000000 for the indirection rather than the base case.
(And the README erroneously used "Offset of" Idx-String all over the place.)
Change-Id: I7003b1558ab536a11a9af308f9b16a7ef8840792
|
|
|
|
Change-Id: I503d88b7d6fc44ef70d5071fddcec465e3fba856
|
|
...getting rid of now dangling references to module registry.
Change-Id: Iccad7ff5dc0e79bf91b7b7dae03b73f16adeb121
|
|
Make uno-skeletonmaker work on top of unoidl/ instead of registry/.
These changes have only been tested so far rather lightly. Basic
uno-skeletonmaker still works, but more thorough testing of the various input
flags is needed.
Change-Id: Id7f3aee863a10f8c649325db2d6f34a4057f70ff
|
|
...so mentioning env:INIFILENAME and env:UNO_TYPES is misleading.
Change-Id: Ia91ad691c58d226bc445b3355dffb82ba7ddbef5
|
|
...just for RuntimeException, which can be replaced with CannotDumpException.
Change-Id: I258f5fe534d589b33e988f7e585168c1bc6990f8
|