summaryrefslogtreecommitdiffstats
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 20:37:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 07:40:24 +0100
commit2976a37ff7039d521c4d15a8387e9db9b27f89d8 (patch)
tree8462d9c2dd1d08db3d255d75fb4d44e3c7a556a9 /include/svtools
parentsd: explain ENABLE_PDFIMPORT-guarded tests (diff)
downloadcore-2976a37ff7039d521c4d15a8387e9db9b27f89d8.tar.gz
core-2976a37ff7039d521c4d15a8387e9db9b27f89d8.zip
sal_Char->char in svtools..svl
Change-Id: Ideb61209e8795865bce6e0b1d667b34f8a8db4d9 Reviewed-on: https://gerrit.libreoffice.org/85713 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/htmlout.hxx10
-rw-r--r--include/svtools/parhtml.hxx2
-rw-r--r--include/svtools/ruler.hxx2
-rw-r--r--include/svtools/unoevent.hxx2
4 files changed, 8 insertions, 8 deletions
diff --git a/include/svtools/htmlout.hxx b/include/svtools/htmlout.hxx
index b5685840b431..5de8360987ad 100644
--- a/include/svtools/htmlout.hxx
+++ b/include/svtools/htmlout.hxx
@@ -34,8 +34,8 @@ class SvNumberFormatter;
struct HTMLOutEvent
{
- const sal_Char *pBasicName;
- const sal_Char *pJavaName;
+ const char *pBasicName;
+ const char *pJavaName;
SvMacroItemId const nEvent;
};
@@ -68,9 +68,9 @@ struct HTMLOutFuncs
SVT_DLLPUBLIC static SvStream& Out_ImageMap( SvStream&, const OUString&, const ImageMap&, const OUString&,
const HTMLOutEvent *pEventTable,
bool bOutStarBasic,
- const sal_Char *pDelim,
- const sal_Char *pIndentArea,
- const sal_Char *pIndentMap,
+ const char *pDelim,
+ const char *pIndentArea,
+ const char *pIndentMap,
rtl_TextEncoding eDestEnc = RTL_TEXTENCODING_MS_1252,
OUString *pNonConvertableChars = nullptr );
SVT_DLLPUBLIC static SvStream& FlushToAscii( SvStream&, HTMLOutContext& rContext );
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index c2f9d850bd79..a00762af8a3a 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -75,7 +75,7 @@ enum class HTMLScriptLanguage
template<typename EnumT>
struct HTMLOptionEnum
{
- const sal_Char *pName; // value of an HTML option
+ const char *pName; // value of an HTML option
EnumT const nValue; // and corresponding value of an enum
};
diff --git a/include/svtools/ruler.hxx b/include/svtools/ruler.hxx
index 80f38d8922db..2bd3a4b132bb 100644
--- a/include/svtools/ruler.hxx
+++ b/include/svtools/ruler.hxx
@@ -578,7 +578,7 @@ struct RulerUnitData
double const nTick2; // Tick quarter unit
double const nTick3; // Tick half unit
double const nTick4; // Tick whole unit
- sal_Char const aUnitStr[8]; // Unit string
+ char const aUnitStr[8]; // Unit string
};
diff --git a/include/svtools/unoevent.hxx b/include/svtools/unoevent.hxx
index f693a51030ca..0d4cdfd0ac07 100644
--- a/include/svtools/unoevent.hxx
+++ b/include/svtools/unoevent.hxx
@@ -42,7 +42,7 @@ enum class SvMacroItemId : sal_uInt16;
struct SvEventDescription
{
SvMacroItemId const mnEvent;
- const sal_Char* mpEventName;
+ const char* mpEventName;
};
/**