[Libreoffice-commits] core.git: chart2/source
Noel Grandin
noel at peralex.com
Tue May 19 01:12:33 PDT 2015
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx | 2 +-
chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx | 2 +-
chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx | 2 +-
chart2/source/controller/main/ChartController.cxx | 2 +-
chart2/source/controller/main/ChartFrameloader.cxx | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 4b4c23acc74f7a13e29122c2b12415f9cc69b792
Author: Noel Grandin <noel at peralex.com>
Date: Tue May 19 10:11:53 2015 +0200
fix old GCC build
after my commit 10749bbf8247f0b17201b33f95a090dfc4fc3211
"remove the last of the OUString #defines in header files"
Change-Id: I592e918f7b718ddff99a8eaff04b11064fad65d9
diff --git a/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx b/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx
index 2c2663e..33c06dc 100644
--- a/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx
@@ -1575,7 +1575,7 @@ OUString SAL_CALL ChartDocumentWrapper::getImplementationName()
OUString ChartDocumentWrapper::getImplementationName_Static()
{
- return CHART_CHARTAPIWRAPPER_IMPLEMENTATION_NAME;
+ return OUString(CHART_CHARTAPIWRAPPER_IMPLEMENTATION_NAME);
}
sal_Bool SAL_CALL ChartDocumentWrapper::supportsService( const OUString& rServiceName )
diff --git a/chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx b/chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx
index c2415b7..67e827f 100644
--- a/chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx
+++ b/chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx
@@ -48,7 +48,7 @@ OUString SAL_CALL ChartTypeUnoDlg::getImplementationName() throw(uno::RuntimeExc
OUString ChartTypeUnoDlg::getImplementationName_Static() throw(uno::RuntimeException)
{
- return CHART_TYPE_DIALOG_SERVICE_IMPLEMENTATION_NAME;
+ return OUString(CHART_TYPE_DIALOG_SERVICE_IMPLEMENTATION_NAME);
}
::comphelper::StringSequence SAL_CALL ChartTypeUnoDlg::getSupportedServiceNames() throw(uno::RuntimeException, std::exception)
diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
index 34df8ac..f445f63 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
@@ -65,7 +65,7 @@ OUString SAL_CALL CreationWizardUnoDlg::getImplementationName()
OUString CreationWizardUnoDlg::getImplementationName_Static()
{
- return CHART_WIZARD_DIALOG_SERVICE_IMPLEMENTATION_NAME;
+ return OUString(CHART_WIZARD_DIALOG_SERVICE_IMPLEMENTATION_NAME);
}
sal_Bool SAL_CALL CreationWizardUnoDlg::supportsService( const OUString& rServiceName )
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx
index 40e6cac..b53ebf6 100644
--- a/chart2/source/controller/main/ChartController.cxx
+++ b/chart2/source/controller/main/ChartController.cxx
@@ -311,7 +311,7 @@ OUString SAL_CALL ChartController::getImplementationName()
OUString ChartController::getImplementationName_Static()
{
- return CHART_CONTROLLER_SERVICE_IMPLEMENTATION_NAME;
+ return OUString(CHART_CONTROLLER_SERVICE_IMPLEMENTATION_NAME);
}
sal_Bool SAL_CALL ChartController::supportsService( const OUString& rServiceName )
diff --git a/chart2/source/controller/main/ChartFrameloader.cxx b/chart2/source/controller/main/ChartFrameloader.cxx
index aad49b6..daca898 100644
--- a/chart2/source/controller/main/ChartFrameloader.cxx
+++ b/chart2/source/controller/main/ChartFrameloader.cxx
@@ -65,7 +65,7 @@ OUString SAL_CALL ChartFrameLoader::getImplementationName()
OUString ChartFrameLoader::getImplementationName_Static()
{
- return CHART_FRAMELOADER_SERVICE_IMPLEMENTATION_NAME;
+ return OUString(CHART_FRAMELOADER_SERVICE_IMPLEMENTATION_NAME);
}
sal_Bool SAL_CALL ChartFrameLoader::supportsService( const OUString& rServiceName )
More information about the Libreoffice-commits
mailing list