diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-23 13:50:23 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-23 23:39:00 +0100 |
commit | badc48eb755e2cd9eaa96c228987948a68de8a63 (patch) | |
tree | 97e499fac08ca04492708359e6f9635653a0691d /include/toolkit | |
parent | 3b40356e841ee2a7640743eebc3f9e4c14e8dfba (diff) |
tk: Constructor feature for UnoControlTabPage(Model).
Change-Id: I7e6955c2d09e1860885f8e2eaa347332421c1c69
Diffstat (limited to 'include/toolkit')
-rw-r--r-- | include/toolkit/controls/tabpagemodel.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/toolkit/controls/tabpagemodel.hxx b/include/toolkit/controls/tabpagemodel.hxx index 966b7947854d..92c8d0519e76 100644 --- a/include/toolkit/controls/tabpagemodel.hxx +++ b/include/toolkit/controls/tabpagemodel.hxx @@ -50,8 +50,9 @@ public: throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException); // XServiceInfo - DECLIMPL_SERVICEINFO_DERIVED( UnoControlTabPageModel, ControlModelContainerBase, szServiceName_UnoControlTabPageModel ) + OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException); + css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException); }; // ---------------------------------------------------- @@ -81,7 +82,14 @@ public: virtual void SAL_CALL windowShown( const ::com::sun::star::lang::EventObject& e ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL windowHidden( const ::com::sun::star::lang::EventObject& e ) throw (::com::sun::star::uno::RuntimeException); // ::com::sun::star::lang::XServiceInfo - DECLIMPL_SERVICEINFO( UnoControlTabPage, szServiceName_UnoControlTabPage) + virtual OUString SAL_CALL getImplementationName() + throw (css::uno::RuntimeException); + + virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) + throw (css::uno::RuntimeException); + + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() + throw (css::uno::RuntimeException); }; #endif // INCLUDED_TOOLKIT_CONTROLS_TABPAGEMODEL_HXX |