diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-15 21:11:22 +0200 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-16 16:40:16 +0200 |
commit | f32dc63b5219e3b8ff99b3b04ec06b48b3c20eab (patch) | |
tree | a47420e60d3eee5bbd3bc3e1915e7d89412c934d /connectivity/source | |
parent | 35f02179210929fc125f69c6989a53610bd115df (diff) |
Make firebird-sdbc install consistent with other drivers.
Change-Id: I01673bda5a08ca793f4fba89ddae036e3f1483e2
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/firebird/FDriver.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/FServices.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/firebird_sdbc.component | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/connectivity/source/drivers/firebird/FDriver.cxx b/connectivity/source/drivers/firebird/FDriver.cxx index 112a5d5411fa..1b4faf6f26da 100644 --- a/connectivity/source/drivers/firebird/FDriver.cxx +++ b/connectivity/source/drivers/firebird/FDriver.cxx @@ -89,7 +89,7 @@ void FirebirdDriver::disposing() //------------------------------------------------------------------------------ rtl::OUString FirebirdDriver::getImplementationName_Static( ) throw(RuntimeException) { - return rtl::OUString("com.sun.star.comp.sdbc.FirebirdDriver"); + return rtl::OUString("com.sun.star.comp.sdbc.firebird.Driver"); // this name is referenced in the configuration and in the firebird.xml // Please take care when changing it. } diff --git a/connectivity/source/drivers/firebird/FServices.cxx b/connectivity/source/drivers/firebird/FServices.cxx index 9cc8197e84c0..42f34c538c5a 100644 --- a/connectivity/source/drivers/firebird/FServices.cxx +++ b/connectivity/source/drivers/firebird/FServices.cxx @@ -118,7 +118,7 @@ struct ProviderRequest }; //--------------------------------------------------------------------------------------- -extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL firebird_component_getFactory( +extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL firebird_sdbc_component_getFactory( const sal_Char* pImplementationName, void* pServiceManager, void* pRegistryKey) diff --git a/connectivity/source/drivers/firebird/firebird_sdbc.component b/connectivity/source/drivers/firebird/firebird_sdbc.component index 2624f2e7b00b..ea4e4de2cfe2 100644 --- a/connectivity/source/drivers/firebird/firebird_sdbc.component +++ b/connectivity/source/drivers/firebird/firebird_sdbc.component @@ -8,9 +8,10 @@ * --> -<component loader="com.sun.star.loader.SharedLibrary" prefix="firebird" +<component loader="com.sun.star.loader.SharedLibrary" prefix="firebird_sdbc" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.comp.sdbc.FirebirdDriver"> + <implementation name="com.sun.star.comp.sdbc.firebird.Driver"> <service name="com.sun.star.sdbc.Driver"/> </implementation> </component> + |