summaryrefslogtreecommitdiff
path: root/reportdesign/inc/RptModel.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/inc/RptModel.hxx')
-rw-r--r--reportdesign/inc/RptModel.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/reportdesign/inc/RptModel.hxx b/reportdesign/inc/RptModel.hxx
index a87e7f4899a8..2d65adc5ec15 100644
--- a/reportdesign/inc/RptModel.hxx
+++ b/reportdesign/inc/RptModel.hxx
@@ -47,7 +47,7 @@ private:
::dbaui::DBSubComponentController* m_pController;
::reportdesign::OReportDefinition* m_pReportDefinition;
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createUnoModel() override;
+ virtual css::uno::Reference< css::uno::XInterface > createUnoModel() override;
OReportModel( const OReportModel& ) = delete;
void operator=(const OReportModel& rSrcModel) = delete;
@@ -71,20 +71,20 @@ public:
inline void attachController( dbaui::DBSubComponentController& _rController ) { m_pController = &_rController; }
void detachController();
- OReportPage* createNewPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
+ OReportPage* createNewPage(const css::uno::Reference< css::report::XSection >& _xSection);
/** returns the page which belongs to a section
*
* @param _xSection
* @return The page or <NULL/> when no page could be found.
*/
- OReportPage* getPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
+ OReportPage* getPage(const css::uno::Reference< css::report::XSection >& _xSection);
/// returns the XReportDefinition which the OReportModel belongs to
- ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >
+ css::uno::Reference< css::report::XReportDefinition >
getReportDefinition() const;
- ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createShape(const OUString& aServiceSpecifier,::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& _rShape,sal_Int32 nOrientation = -1);
+ css::uno::Reference< css::uno::XInterface > createShape(const OUString& aServiceSpecifier,css::uno::Reference< css::drawing::XShape >& _rShape,sal_Int32 nOrientation = -1);
};
}