diff options
author | Noel Grandin <noel@peralex.com> | 2012-11-01 13:25:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-05 16:43:14 +0100 |
commit | 41a71413f4ebe69a48ee068fd5c785d6015c0cca (patch) | |
tree | dc46caf73c60f9186e1ce28543715d79e747394e /ucbhelper/inc | |
parent | b70a330d4f06daaeeff940b2f935c8089d8a7be6 (diff) |
fdo#46808, use service constructor for ucb::PropertiesManager
Change-Id: Ib0c7375ac9f72647b10adcb2cea8a0f8e2fdcca0
Diffstat (limited to 'ucbhelper/inc')
-rw-r--r-- | ucbhelper/inc/ucbhelper/resultsetmetadata.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/inc/ucbhelper/resultsetmetadata.hxx b/ucbhelper/inc/ucbhelper/resultsetmetadata.hxx index 0b5b331dc2a6..129f1f8b90bf 100644 --- a/ucbhelper/inc/ucbhelper/resultsetmetadata.hxx +++ b/ucbhelper/inc/ucbhelper/resultsetmetadata.hxx @@ -145,7 +145,7 @@ private: protected: ::com::sun::star::uno::Reference< - ::com::sun::star::lang::XMultiServiceFactory > m_xSMgr; + ::com::sun::star::uno::XComponentContext > m_xContext; ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property > m_aProps; sal_Bool m_bReadOnly; @@ -163,7 +163,7 @@ public: */ ResultSetMetaData( const ::com::sun::star::uno::Reference< - ::com::sun::star::lang::XMultiServiceFactory >& rxSMgr, + ::com::sun::star::uno::XComponentContext >& rxContext, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& rProps, sal_Bool bReadOnly = sal_True ); @@ -183,7 +183,7 @@ public: */ ResultSetMetaData( const ::com::sun::star::uno::Reference< - ::com::sun::star::lang::XMultiServiceFactory >& rxSMgr, + ::com::sun::star::uno::XComponentContext >& rxContext, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& rProps, const std::vector< ResultSetColumnData >& rColumnData ); |