summaryrefslogtreecommitdiff
path: root/i18npool/source/indexentry
AgeCommit message (Collapse)AuthorFilesLines
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann1-1/+1
Change-Id: I59b111341fc8153088882ac24322f714dc69417a
2015-01-20Some more loplugin:cstylecast: i18npoolStephan Bergmann1-3/+3
Change-Id: Idbb928b2898bc6b2b5bfe3bdbfde0b81d68e4473
2014-12-18i18npool: Use appropriate OUString functions on string constantsStephan Bergmann1-1/+1
Change-Id: I6f2fabd9248b1b385439ff5c074342029fb660e0
2014-12-17Introduce rtl::OUStringLiteral1Stephan Bergmann1-1/+1
...to use single ASCII character literals "more directly" in the OUString API (instead of having to go via an intermediary OUString ctor call). Especially useful for character literals that are defined as const variables or via macros ("direct" uses of character literals in the OUString API can often simply be replaced with single-character string literals, for improved readability). (The functions overloaded for OUStringLiteral1 are those that are actually used by the existing LO code; more could potentially be added. The asymmetry in the operator ==/!= parameter types is by design, though---writing code like 'x' == s is an abomination that shall not be abetted.) Change-Id: Ic5264714be7439eed56b5dfca6ccaee277306f1f
2014-12-12i18npool: Use appropriate OUString functions on string constantsStephan Bergmann2-6/+6
Change-Id: I82fea345a05c0327af3b75ccfd3358f54523c082
2014-11-14fdo#86023 - O[U]String needs a 'clear' methodBrij Mohan Lal Srivastava1-3/+3
Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin6-8/+0
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>
2014-05-26coverity#705186 Missing break in switchCaolán McNamara1-0/+1
Change-Id: I57e5f96fe9b385de852006e4b5bb830c782f93d6
2014-04-23i18npool: sal_Bool->boolNoel Grandin2-3/+3
Change-Id: Id73ee64dbf8586743f0e436e004e663a65d4548f
2014-04-01coverity#707923 Uninitialized scalar fieldCaolán McNamara1-0/+1
Change-Id: Iab2d5829b28587640058d484ef806d9e9e8c1f96
2014-03-08coverity#707923 Uninitialized scalar fieldCaolán McNamara1-0/+2
Change-Id: Ie1610a9e3df8e2844f4cc6b529d50db57ef8dc0e
2014-03-08coverity#707922 Uninitialized scalar fieldCaolán McNamara1-1/+3
Change-Id: I48f74be18664f8bf82e7b3f8576fef05b0e95630
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann5-39/+39
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2013-12-18fdo#54938: Convert i18npool to use cppu::supportsServiceMarcos Paulo de Souza2-3/+4
Change-Id: I9acc496cd95c8362972fa0c41d35b77fc0715aba Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2013-11-14remove unnecessary sal_Unicode casts in various placesNoel Grandin2-6/+6
Change-Id: Ibf04062ca86ed866202d748c3b62a210d30ed6ec
2013-11-11convert OUString compareToAscii == 0 to equalsAsciiNoel Grandin2-2/+2
Convert code like aStr.compareToAscii("XXX") == 0 to aStr.equalsAscii("XXX") which is both easier to read and faster. Change-Id: I448abf58f2fa0e7715dba53f8e8825ca0587c83f
2013-09-05use sensible indentationEike Rathke1-81/+81
that always annoyed me Change-Id: I0c439ddb00d78590b465cd47db6e60d1939bd9f7
2013-09-05unused 'under'Eike Rathke1-2/+0
Change-Id: Ie924cf6d3ba3b95832b1176582765284acd9d5ea
2013-09-05use get*LocaleServiceNameEike Rathke1-30/+31
Change-Id: I976d6d565c7970858a5a259199fe14075e4f5d2e
2013-09-05renamed LocaleData to LocaleDataImpl to prevent confusionEike Rathke3-11/+11
... between com::sun::star::i18n::LocaleData of com/sun/star/i18n/LocaleData.hpp and i18npool/inc/localedata.hxx Change-Id: Id23f67c1e3a654fd4f2886029ee45fcc1f466879
2013-08-09Mark as const/staticTakeshi Abe3-7/+7
Change-Id: I5d51d7e01913ac9917578f8c9789312af9be3638
2013-03-04fdo#46808, clean up some old queryInterface() callsNoel Grandin1-1/+1
clean up stuff like this xI->queryInterface( getCppuType((const Reference< XExtendedInputSequenceChecker>*)0) ) >>= xISC; to xISC.set(xI, UNO_QUERY); Change-Id: I3b16a38c2a363440f6079cfe6ae47f009d3940db
2013-01-15fdo#46808, Convert services in i18npool to XComponentContextNoel Grandin1-4/+4
Change-Id: I3aeaca995bc9a3d865b6955aa47cee4d9eb07750
2012-12-03fixes for where fast string operator+ is not perfectly source compatibleLuboš Luňák1-2/+2
Change-Id: I80af0399037e4f68113338139e7f2ad2400e65ab
2012-11-28fdo#46808, use service constructor for i18n::CollatorNoel Grandin3-8/+8
Change-Id: If6ad17fa9e274beff7ba872a095ced65438962af
2012-08-02WaE: dangling elseTor Lillqvist1-1/+2
Change-Id: I263d35464ceaa7374e8ca94f7e72e56ee33aab53
2012-07-13re-base on ALv2 code. Includes:Michael Meeks6-138/+84
cws mba34issues01: #i117709#: make sure that parent of error message box is visible Patch contributed by Mathias Bauer http://svn.apache.org/viewvc?view=revision&revision=1172346 i#119036 - improve user experience of certification dialog - only shown once Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1299727
2012-06-21re-base on ALv2 code.Michael Meeks2-49/+31
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-05-30targeted string re-workNorbert Thiebaud3-9/+9
Change-Id: I1efff8e09079267f4129c474872d3fc49adeb831
2012-05-17removed unused const rtl::OUStringTakeshi Abe1-1/+0
Change-Id: I7c3409ac39e690fcf2f7e4085bf6857e6bd182fb
2012-04-18Use static linking when DISABLE_DYNLOADING (iOS)Tor Lillqvist1-31/+92
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-2/+2
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-2/+2
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-03-24i18npool: use CustomTarget_*.mk makefilesMatúš Kukan1-45/+0
Also done lot of simplification and modernization.
2012-03-10gbuild: remove some more realpathsMatúš Kukan1-1/+1
Where necessary, replace with wildcard, what does not change path.
2011-12-30Fix for fdo43460 Part XXI getLength() to isEmpty()Olivier Hallot5-9/+9
Part XXI Modules i18npool, idl, idlc, io, javaunohelper, jvmaccess
2011-12-16gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'Matúš Kukan1-2/+2
2011-12-07use gbuild_simple.mk in i18npoolBjoern Michaelsen1-2/+2
2011-11-29set gb_PARTIALBUILD in CustomTargetsBjoern Michaelsen1-0/+1
2011-11-27remove include of pch header from i18npoolNorbert Thiebaud6-12/+0
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann1-1/+1
2011-08-19add errno.h for errnoCaolán McNamara1-0/+1
2011-08-19Improve input and output file open error handlingTor Lillqvist1-4/+4
Tell file name and actual error in error message. Print error message to stderr. Always exit with failure when not able to open an input or output file.
2011-08-19inch closer to windows buildingCaolán McNamara1-0/+4
2011-08-17convert i18npool to gbuildMatúš Kukan4-153/+40
2011-07-10Don't pointlessly build the i18npool build-time tools when cross-compilingTor Lillqvist1-1/+4
2011-06-21Use MSVC-specific compiler options only when $(COM)==MSCTor Lillqvist1-1/+1
2011-06-08Run tool executables built for the BUILD platformTor Lillqvist1-1/+1
2011-05-16array address is only MAX_ADDRESS wideDavid Tardon1-1/+1
2011-01-20Replace suitable equalsAscii calls with equalsAsciiL.Thomas Arnhold1-4/+4
Done with sed -i 's%\(\.equalsAscii\)(\(\s\?"[^"]\+"\)\(\s\?\))%\1L(\3RTL_CONSTASCII_STRINGPARAM(\2\3)\3)%g'.