diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-30 10:16:38 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-30 09:58:16 +0000 |
commit | 669b9cd5b8924a121114540adac91cd7e2f8b0ad (patch) | |
tree | 066c0eecc2be3d76ed327413140df529912aa8bd /svtools/source/uno/wizard/wizardpagecontroller.hxx | |
parent | f8767ea9e53fda2ab144c7edbee75582b0391f2c (diff) |
com::sun::star->css in svtools
Change-Id: I95fd8317ab1142068e0c7b50fc62643fe9f95dc2
Reviewed-on: https://gerrit.libreoffice.org/19683
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svtools/source/uno/wizard/wizardpagecontroller.hxx')
-rw-r--r-- | svtools/source/uno/wizard/wizardpagecontroller.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/uno/wizard/wizardpagecontroller.hxx b/svtools/source/uno/wizard/wizardpagecontroller.hxx index 3eb76c49ad33..f38d4a50b1bc 100644 --- a/svtools/source/uno/wizard/wizardpagecontroller.hxx +++ b/svtools/source/uno/wizard/wizardpagecontroller.hxx @@ -39,7 +39,7 @@ namespace svt { namespace uno public: WizardPageController( WizardShell& i_rParent, - const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XWizardController >& i_rController, + const css::uno::Reference< css::ui::dialogs::XWizardController >& i_rController, const sal_Int16 i_nPageId ); virtual ~WizardPageController(); @@ -49,13 +49,13 @@ namespace svt { namespace uno virtual bool commitPage( WizardTypes::CommitPageReason _eReason ) override; virtual bool canAdvance() const override; - const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XWizardPage >& + const css::uno::Reference< css::ui::dialogs::XWizardPage >& getWizardPage() const { return m_xWizardPage; } TabPage* getTabPage() const; private: - const ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XWizardController > m_xController; - ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XWizardPage > m_xWizardPage; + const css::uno::Reference< css::ui::dialogs::XWizardController > m_xController; + css::uno::Reference< css::ui::dialogs::XWizardPage > m_xWizardPage; const sal_Int16 m_nPageId; }; |