summaryrefslogtreecommitdiff
path: root/xmloff/source/style
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-24 12:48:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-25 15:55:19 +0100
commit6eef1937db49788ac55a1fd2df3f1e2505e27499 (patch)
tree48265bf66a1ffffd26816202125a72193dee6869 /xmloff/source/style
parent4797a92297883f2a8c62f0ffaa83b89b8d0737cb (diff)
sal_Char->char in xmloff..xmlsecurity
Change-Id: I292d699ce1de10ca9341525161f5da2592102ff7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85778 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/style')
-rw-r--r--xmloff/source/style/MultiPropertySetHelper.cxx4
-rw-r--r--xmloff/source/style/styleexp.cxx2
-rw-r--r--xmloff/source/style/xmlprmap.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/style/MultiPropertySetHelper.cxx b/xmloff/source/style/MultiPropertySetHelper.cxx
index c7288be476ea..f8efe405c87d 100644
--- a/xmloff/source/style/MultiPropertySetHelper.cxx
+++ b/xmloff/source/style/MultiPropertySetHelper.cxx
@@ -34,14 +34,14 @@ using ::com::sun::star::uno::UNO_QUERY;
MultiPropertySetHelper::MultiPropertySetHelper(
- const sal_Char** pNames ) :
+ const char** pNames ) :
nLength( 0 ),
aPropertySequence(),
aValues(),
pValues( nullptr )
{
// first count the elements
- for( const sal_Char** pPtr = pNames; *pPtr != nullptr; pPtr++ )
+ for( const char** pPtr = pNames; *pPtr != nullptr; pPtr++ )
nLength++;
// allocate array and create strings
diff --git a/xmloff/source/style/styleexp.cxx b/xmloff/source/style/styleexp.cxx
index d5569f633eec..5b7a9dfd04be 100644
--- a/xmloff/source/style/styleexp.cxx
+++ b/xmloff/source/style/styleexp.cxx
@@ -400,7 +400,7 @@ void XMLStyleExport::exportDefaultStyle(
}
void XMLStyleExport::exportStyleFamily(
- const sal_Char *pFamily,
+ const char *pFamily,
const OUString& rXMLFamily,
const rtl::Reference < SvXMLExportPropertyMapper >& rPropMapper,
bool bUsed, sal_uInt16 nFamily, const OUString* pPrefix)
diff --git a/xmloff/source/style/xmlprmap.cxx b/xmloff/source/style/xmlprmap.cxx
index 58be75a638e2..ae84852baa12 100644
--- a/xmloff/source/style/xmlprmap.cxx
+++ b/xmloff/source/style/xmlprmap.cxx
@@ -271,7 +271,7 @@ sal_Int32 XMLPropertySetMapper::GetEntryIndex(
/** searches for an entry that matches the given api name, namespace and local name or -1 if nothing found */
sal_Int32 XMLPropertySetMapper::FindEntryIndex(
- const sal_Char* sApiName,
+ const char* sApiName,
sal_uInt16 nNameSpace,
const OUString& sXMLName ) const
{