Age | Commit message (Collapse) | Author |
|
Change-Id: Ibf04062ca86ed866202d748c3b62a210d30ed6ec
|
|
Convert code like
if( ! aStr.compareToAscii("XXX") )
to
if( aStr.equalsAscii("XXX") )
which is both clearer and faster.
Change-Id: I267511bccab52f5225b291acbfa4e388b5a5302b
|
|
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
|
|
Change-Id: I90a7a07a43559b8d7e1d4b886b2624255200d46b
Reviewed-on: https://gerrit.libreoffice.org/6406
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Conflicts:
sw/source/ui/inc/content.hxx
Change-Id: I58d81881271fc6e3320bf3b5f1321594b28614a6
Reviewed-on: https://gerrit.libreoffice.org/6388
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
They are practically always useless, often misleading or obsolete.
Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
|
|
Change-Id: Ied50819f226d1fa7fd7f6d004a796b5a08194a23
|
|
Change-Id: I4278999b9b7d184c26036bbe9e3b98420f461e8c
|
|
Change-Id: I8c28241fc836551360711b984f8785da5e43e0e8
|
|
Change-Id: I2cef8d0dd306ce22552db0b5d8890c754be9e835
|
|
Change-Id: I5c97347cfaefb23cd985b7776a83337856e4d55c
|
|
Change-Id: If41d78ce424e85390c7a92eaa36f912c43eef390
|
|
Fix compilation errors when not using system boost. Might be more.
It's sad that one has to micro-manage boost use like this.
Change-Id: I3541789530fbdb0fb03e2b355144e63f8b031097
|
|
Change-Id: I6d9ffef6b052012d09ff54d2a457e1314e6239ee
|
|
Change-Id: I1a47545127885f92e9fcdbf855ca60fbbef1395d
|
|
Change-Id: Ib1074e3025680306c0a8bf7dcff651cefdcb90ba
|
|
Change-Id: I02881a2a7ab3178521388b76e2413b7e1cd6c443
|
|
Change-Id: Ia4fa44c2382f6d1f5a6b3fed533f401bcb03be53
|
|
Change-Id: Ia156b27d944bf419a2e0bd45fa65efd4b7f89404
|
|
Change-Id: Ia6ea53f1a9e1c575606901e173bc952449135522
|
|
Change-Id: Ieea44614271c79beb7a9a3fce35acf921ccb478f
|
|
Change-Id: I9277052ee9c6197cef7a46bd8f3ab9c5515c2502
|
|
If no LanguageTag instance is at hand use the static methods to convert
between BCP 47 string, Locale and MS-LangID instead of creating
temporary instances.
Change-Id: I9597f768078eb81c840e84a5db5617f26bb7dc09
|
|
Don't patch the upstream sources. Don't do version dependend checks.
Just define the missing constants ourselves if they are missing.
Change-Id: Ie0c56474e5ff20c092c99c1648cd15b97149041f
Reviewed-on: https://gerrit.libreoffice.org/4200
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
|
|
|
|
Change-Id: I9ce34899181416f6c5e38289035af35ed5533616
|
|
Change-Id: I89258875094e9731921fcafdc903278ca8f95aa8
|
|
(cherry picked from commit a88630fb326fa4dcbe28edd1c149c8e5e7b7f123)
Conflicts:
lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx
Change-Id: Ic48281be27bf43f8a564f46684ddb53a2d83d80e
|
|
|
|
|
|
Change-Id: I8e9f70eb5d929c98b4379416c2259a74e31d587f
Reviewed-on: https://gerrit.libreoffice.org/3503
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
|
|
Change-Id: I400fad08c0ae7b6b34bad63693f54856867e4dac
Reviewed-on: https://gerrit.libreoffice.org/3502
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
|
|
Change-Id: Ib48a12e902f2311c295b2007f08f44dee28f431d
Reviewed-on: https://gerrit.libreoffice.org/3499
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
|
|
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk
have kept them, in order not to break external API (the automatic using declaration
is LO-internal).
Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
|
|
Moved portions from module i18npool, all of former i18nisolang1 library
that now is i18nlangtag. Included are languagetag, isolang and mslangid.
This i18nlangtag code is now even used by module comphelper, so
disentangling i18npool and making this an own module was needed to not
create circular module dependencies.
Change-Id: Ib887c3d6dde667403fd22d382310ba5f1a9b0015
|
|
Change-Id: I4c33ed5a9ae5a29c2deb1a7f7d3ef1a11a44c539
|
|
Change-Id: Ifaa1637122d6f9cae1e29b77ac36ca5d1f220aed
|
|
Also, windows build cunningly uses an included version header that would
be overwritten by configure.
Change-Id: Id01b5dcd0f021a11d016571b6ee81e4fb8495020
|
|
... by introducing a version check that is so horribly ugly that it will
hopefully be removed again as soon as a new upstream release with the
rename is available.
Change-Id: I8e0409ba7331dec7140d2a4a49720c804e90582f
|
|
...cf. d4244efeb171632f309c8cfcbea4fbe2a3de3193 "libexttextcat: fix spelling of
TEXTCAT_RESULT_UNKOWN."
Change-Id: I65e8327296450324205e937fa762b656afebe2dd
|
|
and remove the _ prefix too while at it
Change-Id: I30ee8cd5aead53abac19fdc372e1fe45b3cbf55f
|
|
Change-Id: Ia3ff77d2b99c9ef6c4c9b510bb30f349592c0b94
Reviewed-on: https://gerrit.libreoffice.org/3030
Reviewed-by: Thorsten Behrens <tbehrens@suse.com>
Tested-by: Thorsten Behrens <tbehrens@suse.com>
|
|
|
|
Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
|
|
Change-Id: I77d7ef6890ca584cf022059838c318a2811bcd5d
|
|
Change-Id: I4ceee0ed3438a18e13c186ebd8d390604d26ec28
|
|
Change-Id: Ie8ac76373f4f4a456cdfb7f1a77ce640a5595d10
|
|
Change-Id: I1af159daed382e78f8c9933af10df9dba2010193
|
|
Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd
Reviewed-on: https://gerrit.libreoffice.org/1924
Tested-by: Luboš Luňák <l.lunak@suse.cz>
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
|
|
Change-Id: I4af00e2925df393523ad3d00bd3b95459ff77f9c
|