Age | Commit message (Collapse) | Author |
|
Change-Id: I7ae556a065f250774c7d0f8ca4f6f9c9c2c6c533
|
|
Change-Id: I4b8eba6d8353e4207cac4a8b24d2b9f0440ce9e6
|
|
Change-Id: I25e7c13036c6ce1948cc33d45901ef69a258fb03
|
|
Change-Id: I241661119371b75804fcf9215ff5e5da2a5b9265
Reviewed-on: https://gerrit.libreoffice.org/7732
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Just like other lingucomponent parts, besides altlinuxhyph is a
historical library name that no longer exist.
Change-Id: I803c4483633c3c8993d70e0057f0c825b1020ace
|
|
Change-Id: I6544fdddd1662850a715e8841dcad35135fb1d94
|
|
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
|
|
Change-Id: I56f38bd786f3a026cb2908f28540dc9c4003af83
|
|
Change-Id: I4bd729499aa8be58f04194656e35c1f79d5d4919
|
|
This reverts commit cb56ab9bca5e917d86a7dc24eb144353c405f07c.
|
|
For example, de_CH_frami.dic and de_AT_frami.dic use de_DE_frami.aff.
Change-Id: I1d3770ad871b4714f7e595e1cd13f5fd7f224a1f
|
|
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: I2cef8d0dd306ce22552db0b5d8890c754be9e835
|
|
Change-Id: If41d78ce424e85390c7a92eaa36f912c43eef390
|
|
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
|
|
|
|
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: 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: 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: I58a1f5d36939dd95648ea42b31331e757c65ee57
|
|
Partly reverts d7a5ec62e91ce3dc5b784815254218f16181f676
An empty locale was treated as LANGUAGE_NONE, effectively being
interpreted as absence or undetermined or multiple or all depending on
context. Restore this behavior as it was an undocumented feature of the
API.
Change-Id: If4b1641e776d10dea0d3037f7a62725c2b8d612c
|