summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2001-07-27 07:06:47 +0000
committerRüdiger Timm <rt@openoffice.org>2001-07-27 07:06:47 +0000
commit6cc3c81481673babf54d13e994ef4642cb0379ac (patch)
tree316851cc18764ec68b648df739805e99ba652765 /svx/source/form
parent1e7c619b783c5b63b24dc6dbb22638d0d2ec105c (diff)
#87576# sparc compiler comlains about static_cast here
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/dbtoolsclient.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/svx/source/form/dbtoolsclient.cxx b/svx/source/form/dbtoolsclient.cxx
index 66430cdefe0b..ab432e17de15 100644
--- a/svx/source/form/dbtoolsclient.cxx
+++ b/svx/source/form/dbtoolsclient.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dbtoolsclient.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2001-07-25 13:34:38 $
+ * last change: $Author: rt $ $Date: 2001-07-27 08:06:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -146,7 +146,7 @@ namespace svxform
{
// get the symbol for the method creating the factory
const ::rtl::OUString sFactoryCreationFunc = ::rtl::OUString::createFromAscii("createDataAccessToolsFactory");
- s_pFactoryCreationFunc = static_cast<createDataAccessToolsFactoryFunction>(
+ s_pFactoryCreationFunc = reinterpret_cast<createDataAccessToolsFactoryFunction>(
osl_getSymbol(s_hDbtoolsModule, sFactoryCreationFunc.pData));
if (NULL == s_pFactoryCreationFunc)
@@ -254,6 +254,9 @@ namespace svxform
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.1 2001/07/25 13:34:38 fs
+ * initial checkin - base class for accessing DBTOOLS with load-on-demand
+ *
*
* Revision 1.0 24.07.01 16:55:54 fs
- ************************************************************************/ \ No newline at end of file
+ ************************************************************************/