summaryrefslogtreecommitdiff
path: root/sw/source/ui/dbui/swdbtoolsclient.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2003-12-01 16:32:40 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2003-12-01 16:32:40 +0000
commitf0a5d844929f84483bad77412838fe222dd601ee (patch)
tree12e982754b2604c0ef832570c82472bb8a485596 /sw/source/ui/dbui/swdbtoolsclient.cxx
parent6f4c9d0da1bf23842910a4b10e569954655b543e (diff)
INTEGRATION: CWS ooo20031110 (1.2.402); FILE MERGED
2003/11/07 12:34:44 waratah 1.2.402.1: #21906# convert a c++ cast to a C one to allow a permissive build to be run
Diffstat (limited to 'sw/source/ui/dbui/swdbtoolsclient.cxx')
-rw-r--r--sw/source/ui/dbui/swdbtoolsclient.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/ui/dbui/swdbtoolsclient.cxx b/sw/source/ui/dbui/swdbtoolsclient.cxx
index 07e6fc2f8eb9..49eaac26ca9a 100644
--- a/sw/source/ui/dbui/swdbtoolsclient.cxx
+++ b/sw/source/ui/dbui/swdbtoolsclient.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: swdbtoolsclient.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2002-08-21 12:23:42 $
+ * last change: $Author: rt $ $Date: 2003-12-01 17:32:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,7 +160,8 @@ void SwDbtoolsClient::registerClient()
{
// get the symbol for the method creating the factory
const ::rtl::OUString sFactoryCreationFunc = ::rtl::OUString::createFromAscii("createDataAccessToolsFactory");
- getDbToolsClientFactoryFunction() = reinterpret_cast<createDataAccessToolsFactoryFunction>(
+ // reinterpret_cast<createDataAccessToolsFactoryFunction> removed for gcc permissive
+ getDbToolsClientFactoryFunction() = (createDataAccessToolsFactoryFunction)(
osl_getSymbol(getDbToolsClientModule(), sFactoryCreationFunc.pData));
if (NULL == getDbToolsClientFactoryFunction())