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/view | |
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/view')
-rw-r--r-- | sd/source/ui/view/DocumentRenderer.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/drviewse.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
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); |