diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 13:29:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 19:17:57 +0100 |
commit | e994b3fc3b2c9b7d39a715fc4d9453e06434d457 (patch) | |
tree | 444fc710a7e31168bba36319f65a862d393c69e6 /reportdesign/source | |
parent | 7c18da2dc6963b6f3f74a72fc4f6a3eedd8f9eb7 (diff) |
sal_Char->char in remotebridges..sax
Change-Id: I6d32942960a5e997f16eb1301c45495661cd4cea
Reviewed-on: https://gerrit.libreoffice.org/85514
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'reportdesign/source')
5 files changed, 10 insertions, 10 deletions
diff --git a/reportdesign/source/core/api/ReportDefinition.cxx b/reportdesign/source/core/api/ReportDefinition.cxx index 296419e4f2db..8fcf9e1b9e3e 100644 --- a/reportdesign/source/core/api/ReportDefinition.cxx +++ b/reportdesign/source/core/api/ReportDefinition.cxx @@ -1457,8 +1457,8 @@ void SAL_CALL OReportDefinition::removeStorageChangeListener( const uno::Referen bool OReportDefinition::WriteThroughComponent( const uno::Reference<lang::XComponent> & xComponent, - const sal_Char* pStreamName, - const sal_Char* pServiceName, + const char* pStreamName, + const char* pServiceName, const uno::Sequence<uno::Any> & rArguments, const uno::Sequence<beans::PropertyValue> & rMediaDesc, const uno::Reference<embed::XStorage>& _xStorageToSaveTo) @@ -1504,7 +1504,7 @@ bool OReportDefinition::WriteThroughComponent( bool OReportDefinition::WriteThroughComponent( const uno::Reference<io::XOutputStream> & xOutputStream, const uno::Reference<lang::XComponent> & xComponent, - const sal_Char* pServiceName, + const char* pServiceName, const uno::Sequence<uno::Any> & rArguments, const uno::Sequence<beans::PropertyValue> & rMediaDesc) { diff --git a/reportdesign/source/core/misc/conditionalexpression.cxx b/reportdesign/source/core/misc/conditionalexpression.cxx index dc25d4b50bfc..25ccd140a6d6 100644 --- a/reportdesign/source/core/misc/conditionalexpression.cxx +++ b/reportdesign/source/core/misc/conditionalexpression.cxx @@ -28,7 +28,7 @@ namespace rptui // = ConditionalExpression - ConditionalExpression::ConditionalExpression( const sal_Char* _pAsciiPattern ) + ConditionalExpression::ConditionalExpression( const char* _pAsciiPattern ) :m_sPattern( OUString::createFromAscii( _pAsciiPattern ) ) { } diff --git a/reportdesign/source/filter/xml/xmlfilter.cxx b/reportdesign/source/filter/xml/xmlfilter.cxx index b39b315ce13b..0787a313c5d7 100644 --- a/reportdesign/source/filter/xml/xmlfilter.cxx +++ b/reportdesign/source/filter/xml/xmlfilter.cxx @@ -184,8 +184,8 @@ static ErrCode ReadThroughComponent( static ErrCode ReadThroughComponent( const uno::Reference< embed::XStorage >& xStorage, const uno::Reference<XComponent>& xModelComponent, - const sal_Char* pStreamName, - const sal_Char* pCompatibilityStreamName, + const char* pStreamName, + const char* pCompatibilityStreamName, const uno::Reference<XComponentContext> & rxContext, const Reference<document::XGraphicStorageHandler> & rxGraphicStorageHandler, const Reference<document::XEmbeddedObjectResolver>& _xEmbeddedObjectResolver, diff --git a/reportdesign/source/ui/inspection/DefaultInspection.cxx b/reportdesign/source/ui/inspection/DefaultInspection.cxx index 986bf85df88c..f659099e2b66 100644 --- a/reportdesign/source/ui/inspection/DefaultInspection.cxx +++ b/reportdesign/source/ui/inspection/DefaultInspection.cxx @@ -177,7 +177,7 @@ namespace rptui const struct { - const sal_Char* programmaticName; + const char* programmaticName; const char* uiNameResId; OString const helpId; } aCategories[] = { diff --git a/reportdesign/source/ui/misc/UITools.cxx b/reportdesign/source/ui/misc/UITools.cxx index ab52f063f2ca..5f2ea6b38cfc 100644 --- a/reportdesign/source/ui/misc/UITools.cxx +++ b/reportdesign/source/ui/misc/UITools.cxx @@ -572,7 +572,7 @@ namespace template< class ATTRIBUTE_TYPE > - void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const sal_Char* _pAttributeName, + void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const char* _pAttributeName, const uno::Reference<report::XReportControlFormat >& _rxReportControlFormat, void (SAL_CALL report::XReportControlFormat::*pSetter)( ATTRIBUTE_TYPE ) ) { @@ -582,7 +582,7 @@ namespace } - void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const sal_Char* _pAttributeName, + void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const char* _pAttributeName, const uno::Reference<report::XReportControlFormat >& _rxReportControlFormat, void (SAL_CALL report::XReportControlFormat::*pSetter)( const OUString& ) ) { @@ -592,7 +592,7 @@ namespace } - void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const sal_Char* _pAttributeName, + void lcl_applyFontAttribute( const ::comphelper::NamedValueCollection& _rAttrValues, const char* _pAttributeName, const uno::Reference<report::XReportControlFormat >& _rxReportControlFormat, void (SAL_CALL report::XReportControlFormat::*pSetter)( const lang::Locale& ) ) { |