summaryrefslogtreecommitdiff
path: root/reportdesign/source/ui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:50:55 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:30 +0200
commit365fea447d72be8c1c21de34fda3c1b13226a1cf (patch)
tree6475c7d1639ba663de99bafb07bbb7f3481d3d58 /reportdesign/source/ui
parent732e7bdfa2d0e7b0296599517f53d194c02acfee (diff)
loplugin:staticcall
Change-Id: I0d254902727f6d9c874aaeed7c22096f282422d0
Diffstat (limited to 'reportdesign/source/ui')
-rw-r--r--reportdesign/source/ui/inspection/DataProviderHandler.cxx2
-rw-r--r--reportdesign/source/ui/inspection/GeometryHandler.cxx2
-rw-r--r--reportdesign/source/ui/inspection/ReportComponentHandler.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/reportdesign/source/ui/inspection/DataProviderHandler.cxx b/reportdesign/source/ui/inspection/DataProviderHandler.cxx
index 9e613505a253..3affd783bf35 100644
--- a/reportdesign/source/ui/inspection/DataProviderHandler.cxx
+++ b/reportdesign/source/ui/inspection/DataProviderHandler.cxx
@@ -365,7 +365,7 @@ uno::Sequence< beans::Property > SAL_CALL DataProviderHandler::getSupportedPrope
::std::vector< beans::Property > aNewProps;
if( m_xChartModel.is() )
{
- m_pInfoService->getExcludeProperties( aNewProps, m_xFormComponentHandler );
+ rptui::OPropertyInfoService::getExcludeProperties( aNewProps, m_xFormComponentHandler );
beans::Property aValue;
static const OUString s_pProperties[] =
{
diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx
index be85489bf41e..519ccfbcb1cf 100644
--- a/reportdesign/source/ui/inspection/GeometryHandler.cxx
+++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx
@@ -1268,7 +1268,7 @@ uno::Sequence< beans::Property > SAL_CALL GeometryHandler::getSupportedPropertie
{
::std::vector< beans::Property > aNewProps;
aNewProps.reserve(20); // only a guess
- m_pInfoService->getExcludeProperties( aNewProps, m_xFormComponentHandler );
+ rptui::OPropertyInfoService::getExcludeProperties( aNewProps, m_xFormComponentHandler );
const OUString pIncludeProperties[] =
{
diff --git a/reportdesign/source/ui/inspection/ReportComponentHandler.cxx b/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
index 987d38386aa3..d9e9a69d6577 100644
--- a/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
+++ b/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
@@ -173,7 +173,7 @@ void SAL_CALL ReportComponentHandler::removePropertyChangeListener(const uno::Re
uno::Sequence< beans::Property > SAL_CALL ReportComponentHandler::getSupportedProperties() throw (uno::RuntimeException, std::exception)
{
::std::vector< beans::Property > aNewProps;
- m_pInfoService->getExcludeProperties( aNewProps, m_xFormComponentHandler );
+ rptui::OPropertyInfoService::getExcludeProperties( aNewProps, m_xFormComponentHandler );
return aNewProps.empty() ? uno::Sequence< beans::Property > () : uno::Sequence< beans::Property > (&(*aNewProps.begin()),aNewProps.size());
}