diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 12:41:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 15:49:49 +0100 |
commit | e8527c6ffa8b346a0a8a84a6b81e538cd7733ebe (patch) | |
tree | c9b66a2ed6b9f503fcd220e85ab6b5e47c176785 /sd/source/ui | |
parent | 6873e0a969948a96679f667400da4eaa4ef2cc07 (diff) |
sal_Char->char in sd
Change-Id: I1fb2b9e7e3e4666e1fad4f36cda5c7b24e0f1ebf
Reviewed-on: https://gerrit.libreoffice.org/85691
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui')
-rw-r--r-- | sd/source/ui/framework/configuration/ConfigurationClassifier.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/framework/configuration/ConfigurationClassifier.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/unoidl/facreg.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unopage.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/DocumentRenderer.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/drviewse.cxx | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx index c39adf26d126..ab9ecddd7be0 100644 --- a/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx +++ b/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx @@ -150,7 +150,7 @@ void ConfigurationClassifier::CopyResources ( #if DEBUG_SD_CONFIGURATION_TRACE void ConfigurationClassifier::TraceResourceIdVector ( - const sal_Char* pMessage, + const char* pMessage, const ResourceIdVector& rResources) { diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx index 25b07f1bdcb3..8753c4a73d59 100644 --- a/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx +++ b/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx @@ -89,7 +89,7 @@ public: const ResourceIdVector& GetC1andC2() const { return maC1andC2;} static void TraceResourceIdVector ( - const sal_Char* pMessage, + const char* pMessage, const ResourceIdVector& rResources); #endif diff --git a/sd/source/ui/unoidl/facreg.cxx b/sd/source/ui/unoidl/facreg.cxx index 9314a60b4fe2..6fffe8a3bec5 100644 --- a/sd/source/ui/unoidl/facreg.cxx +++ b/sd/source/ui/unoidl/facreg.cxx @@ -61,7 +61,7 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * sd_component_getFactory( - const sal_Char * pImplName, + const char * pImplName, void * pServiceManager, void * ) { diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx index f478a828e8e5..e728f0fb9e05 100644 --- a/sd/source/ui/unoidl/unopage.cxx +++ b/sd/source/ui/unoidl/unopage.cxx @@ -100,7 +100,7 @@ enum WID_PAGE } -static sal_Char const sEmptyPageName[sizeof("page")] = "page"; +static char const sEmptyPageName[sizeof("page")] = "page"; // this function stores the property maps for draw pages in impress and draw static const SvxItemPropertySet* ImplGetDrawPagePropertySet( bool bImpress, PageKind ePageKind ) diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx index 30fe413e5d83..17e225e7c1c8 100644 --- a/sd/source/ui/view/DocumentRenderer.cxx +++ b/sd/source/ui/view/DocumentRenderer.cxx @@ -240,7 +240,7 @@ namespace { bDefaultValue is returned. Otherwise <FALSE/> is returned. */ bool GetBoolValue ( - const sal_Char* pName, + const char* pName, const bool bDefaultValue) const { bool bValue = mrProperties.getBoolValue( pName, bDefaultValue ); @@ -252,7 +252,7 @@ namespace { returned. */ bool GetBoolValue ( - const sal_Char* pName, + const char* pName, const sal_Int32 nTriggerValue) const { sal_Int32 nValue = static_cast<sal_Int32>(mrProperties.getIntValue( pName, 0 )); diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx index 97592f5c6a69..7bbc8946e3db 100644 --- a/sd/source/ui/view/drviewse.cxx +++ b/sd/source/ui/view/drviewse.cxx @@ -124,7 +124,7 @@ static void ImpAddPrintableCharactersToTextEdit(SfxRequest const & rReq, ::sd::V { for(sal_Int32 a(0); a < aInputString.getLength(); a++) { - sal_Char aChar = static_cast<sal_Char>(aInputString[a]); + char aChar = static_cast<char>(aInputString[a]); vcl::KeyCode aKeyCode; KeyEvent aKeyEvent(aChar, aKeyCode); |