Age | Commit message (Collapse) | Author |
|
Change-Id: I6021eabab1474c99868f38ecd0d466eb0d97054e
Reviewed-on: https://gerrit.libreoffice.org/8279
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I7530cb9d0797df5fc86695b0379cc44c159d2ab5
|
|
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: 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
|