diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:42:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 12:05:51 +0100 |
commit | 821bdf5f7980de0c67ac17f275d3d2e0710ec6a5 (patch) | |
tree | 2b801c3be46b3975804edeeae6b7ffea7508771e /i18npool/source/collator | |
parent | 0c5f36e5f77e5b9cd155c29fd54c0878be31de0a (diff) |
sal_Char->char in formula..i18npool
Change-Id: I765979f41842befcf25909944100d1caa97f81a8
Reviewed-on: https://gerrit.libreoffice.org/85476
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18npool/source/collator')
-rw-r--r-- | i18npool/source/collator/chaptercollator.cxx | 2 | ||||
-rw-r--r-- | i18npool/source/collator/gencoll_rule.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/source/collator/chaptercollator.cxx b/i18npool/source/collator/chaptercollator.cxx index 5b57f5cad03a..fb4128a6c7c3 100644 --- a/i18npool/source/collator/chaptercollator.cxx +++ b/i18npool/source/collator/chaptercollator.cxx @@ -72,7 +72,7 @@ ChapterCollator::compareSubstring( const OUString& str1, sal_Int32 off1, sal_Int return res1.Value == res2.Value ? 0 : res1.Value > res2.Value ? 1 : -1; } -const sal_Char cChapCollator[] = "com.sun.star.i18n.ChapterCollator"; +const char cChapCollator[] = "com.sun.star.i18n.ChapterCollator"; OUString SAL_CALL ChapterCollator::getImplementationName() diff --git a/i18npool/source/collator/gencoll_rule.cxx b/i18npool/source/collator/gencoll_rule.cxx index 33be2a5a2c56..5eb659c280b1 100644 --- a/i18npool/source/collator/gencoll_rule.cxx +++ b/i18npool/source/collator/gencoll_rule.cxx @@ -92,7 +92,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) int fileSize = ftell(fp); rewind(fp); - sal_Char str[1024]; + char str[1024]; OUStringBuffer Obuf(fileSize); while (fgets(str, 1024, fp)) { // don't convert last new line character to Ostr. |