diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 14:25:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 17:40:48 +0100 |
commit | a783c1bb61ab888275241ff589a84d216ecbb3dc (patch) | |
tree | 46911279b4db0a3b2b3468700284f1167aa753a6 /dbaccess/source/ui/control | |
parent | 685c9642c190c8d2585f46c058e950d279e0aa8f (diff) |
sal_Char->char in dbaccess
Change-Id: I6cce128843d88bc453d171b2584ecf0dfffd1044
Reviewed-on: https://gerrit.libreoffice.org/85398
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui/control')
-rw-r--r-- | dbaccess/source/ui/control/opendoccontrols.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/control/opendoccontrols.cxx b/dbaccess/source/ui/control/opendoccontrols.cxx index 48c7a9162c39..3ca51921375f 100644 --- a/dbaccess/source/ui/control/opendoccontrols.cxx +++ b/dbaccess/source/ui/control/opendoccontrols.cxx @@ -57,7 +57,7 @@ namespace dbaui using ::com::sun::star::ui::XImageManager; using ::com::sun::star::graphic::XGraphic; - Reference< XGraphic> GetCommandIcon( const sal_Char* _pCommandURL, const OUString& _rModuleName ) + Reference< XGraphic> GetCommandIcon( const char* _pCommandURL, const OUString& _rModuleName ) { if ( !_pCommandURL || !*_pCommandURL ) return nullptr; @@ -99,13 +99,13 @@ namespace dbaui // OpenButton - OpenDocumentButton::OpenDocumentButton(std::unique_ptr<weld::Button> xControl, const sal_Char* _pAsciiModuleName) + OpenDocumentButton::OpenDocumentButton(std::unique_ptr<weld::Button> xControl, const char* _pAsciiModuleName) : m_xControl(std::move(xControl)) { impl_init( _pAsciiModuleName ); } - void OpenDocumentButton::impl_init( const sal_Char* _pAsciiModuleName ) + void OpenDocumentButton::impl_init( const char* _pAsciiModuleName ) { OSL_ENSURE( _pAsciiModuleName, "OpenDocumentButton::impl_init: invalid module name!" ); m_sModule = OUString::createFromAscii( _pAsciiModuleName ); @@ -121,7 +121,7 @@ namespace dbaui // OpenDocumentListBox - OpenDocumentListBox::OpenDocumentListBox(std::unique_ptr<weld::ComboBox> xControl, const sal_Char* _pAsciiModuleName ) + OpenDocumentListBox::OpenDocumentListBox(std::unique_ptr<weld::ComboBox> xControl, const char* _pAsciiModuleName ) : m_xControl(std::move(xControl)) { // we need to limit the max auto width feature of the filter box @@ -131,7 +131,7 @@ namespace dbaui impl_init( _pAsciiModuleName ); } - void OpenDocumentListBox::impl_init( const sal_Char* _pAsciiModuleName ) + void OpenDocumentListBox::impl_init( const char* _pAsciiModuleName ) { OSL_ENSURE( _pAsciiModuleName, "OpenDocumentListBox::impl_init: invalid module name!" ); |