register new service

This commit is contained in:
Ocke Janssen 2000-11-14 12:42:40 +00:00
parent 7d0a0c8e05
commit 55554b974a
2 changed files with 11 additions and 5 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: sbagrid.hxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: fs $ $Date: 2000-11-07 18:38:11 $
* last change: $Author: oj $ $Date: 2000-11-14 13:42:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -132,8 +132,12 @@ namespace dbaui
// ::com::sun::star::lang::XServiceInfo
::rtl::OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException );
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
// need by registration
static ::rtl::OUString getImplementationName_Static() throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Sequence< ::rtl::OUString> getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&);
// ::com::sun::star::frame::XDispatch
virtual void SAL_CALL dispatch(const ::com::sun::star::util::URL& aURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgs) throw( ::com::sun::star::uno::RuntimeException );

View file

@ -2,9 +2,9 @@
*
* $RCSfile: uiservices.cxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: oj $ $Date: 2000-10-26 14:54:20 $
* last change: $Author: oj $ $Date: 2000-11-14 13:41:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -86,6 +86,7 @@ extern "C" void SAL_CALL createRegistryInfo_OFormGridView();
extern "C" void SAL_CALL createRegistryInfo_DBContentLoader();
extern "C" void SAL_CALL writeDBLoaderInfo(void* pRegistryKey);
extern "C" void SAL_CALL createRegistryInfo_OInteractionHandler();
extern "C" void SAL_CALL createRegistryInfo_SbaXGridControl();
//***************************************************************************************
extern "C" void SAL_CALL createRegistryInfo()
@ -99,6 +100,7 @@ extern "C" void SAL_CALL createRegistryInfo()
createRegistryInfo_OFormGridView();
createRegistryInfo_DBContentLoader();
createRegistryInfo_OInteractionHandler();
createRegistryInfo_SbaXGridControl();
bInit = sal_True;
}
}