summaryrefslogtreecommitdiff
path: root/reportdesign/inc/RptPage.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 15:43:36 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-26 06:36:45 +0000
commitc4c2c7e4273fb662bcb2ef9d8e2940799ed7d4a9 (patch)
tree6993d1b375ceb1cb804864b01756bed1e384ed91 /reportdesign/inc/RptPage.hxx
parentcc906ec47eaaad247e8fbed5c9e6f3604a8b64c7 (diff)
com::sun::star->css in remotebridges,reportdesign
Change-Id: Id210cbc3481a8a31e6fc0ba2028346fc585c8744 Reviewed-on: https://gerrit.libreoffice.org/19597 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'reportdesign/inc/RptPage.hxx')
-rw-r--r--reportdesign/inc/RptPage.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/reportdesign/inc/RptPage.hxx b/reportdesign/inc/RptPage.hxx
index 0a59e94dbd7b..7dc4dee86e30 100644
--- a/reportdesign/inc/RptPage.hxx
+++ b/reportdesign/inc/RptPage.hxx
@@ -37,7 +37,7 @@ class REPORTDESIGN_DLLPUBLIC OReportPage : public SdrPage
OReportPage& operator=(const OReportPage&) = delete;
OReportModel& rModel;
- ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > m_xSection;
+ css::uno::Reference< css::report::XSection > m_xSection;
bool m_bSpecialInsertMode;
std::vector<SdrObject*> m_aTemporaryObjectList;
@@ -50,12 +50,12 @@ class REPORTDESIGN_DLLPUBLIC OReportPage : public SdrPage
virtual ~OReportPage();
protected:
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createUnoPage() override;
+ virtual css::uno::Reference< css::uno::XInterface > createUnoPage() override;
public:
TYPEINFO_OVERRIDE();
OReportPage( OReportModel& rModel
- ,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection
+ ,const css::uno::Reference< css::report::XSection >& _xSection
,bool bMasterPage = false );
@@ -68,12 +68,12 @@ public:
/** returns the index inside the object list which belongs to the report component.
@param _xObject the report component
*/
- sal_uLong getIndexOf(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent >& _xObject);
+ sal_uLong getIndexOf(const css::uno::Reference< css::report::XReportComponent >& _xObject);
/** removes the SdrObject which belongs to the report component.
@param _xObject the report component
*/
- void removeSdrObject(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent >& _xObject);
+ void removeSdrObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
void setSpecialMode() {m_bSpecialInsertMode = true;}
bool getSpecialMode() {return m_bSpecialInsertMode;}
@@ -83,9 +83,9 @@ public:
/** insert a new SdrObject which belongs to the report component.
@param _xObject the report component
*/
- void insertObject(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent >& _xObject);
+ void insertObject(const css::uno::Reference< css::report::XReportComponent >& _xObject);
- ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getSection() const { return m_xSection;}
+ css::uno::Reference< css::report::XSection > getSection() const { return m_xSection;}
};
}
#endif // INCLUDED_REPORTDESIGN_INC_RPTPAGE_HXX