diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-06-11 10:33:45 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-06-11 10:33:45 +0000 |
commit | f1e8c198cf67762935a6b50e18085a2981d8abaa (patch) | |
tree | 6bfa75acbe6eacbb5ef841b97525ef26ebe0706f /extensions/source/propctrlr | |
parent | 0ba5255a9fdd3580dafaf80ce9e91aff5bdf3af8 (diff) |
#86096# pcr_createRegistryInfo_OControlFontDialog (new service in this module)
Diffstat (limited to 'extensions/source/propctrlr')
-rw-r--r-- | extensions/source/propctrlr/pcrservices.cxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/pcrservices.cxx b/extensions/source/propctrlr/pcrservices.cxx index 3751479f1b20..8ee935ee642d 100644 --- a/extensions/source/propctrlr/pcrservices.cxx +++ b/extensions/source/propctrlr/pcrservices.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pcrservices.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: fs $ $Date: 2001-01-12 11:30:30 $ + * last change: $Author: fs $ $Date: 2001-06-11 11:33:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -73,15 +73,18 @@ using namespace ::com::sun::star::registry; //--------------------------------------------------------------------------------------- extern "C" void SAL_CALL createRegistryInfo_OPropertyBrowserController(); +extern "C" void SAL_CALL createRegistryInfo_OControlFontDialog(); //--------------------------------------------------------------------------------------- -extern "C" void SAL_CALL pcr_createRegistryInfo() +extern "C" void SAL_CALL dbi_initializeModule() { static sal_Bool s_bInit = sal_False; if (!s_bInit) { createRegistryInfo_OPropertyBrowserController(); + createRegistryInfo_OControlFontDialog(); + ::pcr::OModule::setResourceFilePrefix("pcr"); s_bInit = sal_True; } } @@ -93,7 +96,7 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( uno_Environment **ppEnv ) { - pcr_createRegistryInfo(); + dbi_initializeModule(); *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } @@ -140,6 +143,9 @@ extern "C" void* SAL_CALL component_getFactory( /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.1 2001/01/12 11:30:30 fs + * initial checkin - outsourced the form property browser + * * * Revision 1.0 11.01.01 09:14:45 fs ************************************************************************/ |