summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/shutdownicon.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-10-09 14:56:53 +0000
committerKurt Zenker <kz@openoffice.org>2006-10-09 14:56:53 +0000
commit549313e9298259d4511eddc7828208c63a31231c (patch)
tree9dfbc9ecaf708a88b446d124265ee70fc03c954b /sfx2/source/appl/shutdownicon.cxx
parentdf3c10bfbc87b78e49c5e2209cff81e933ae450f (diff)
#i10000# use getFunctionSymbol instead of getSymbol
Diffstat (limited to 'sfx2/source/appl/shutdownicon.cxx')
-rw-r--r--sfx2/source/appl/shutdownicon.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/shutdownicon.cxx b/sfx2/source/appl/shutdownicon.cxx
index 35dad977b3..79136a4264 100644
--- a/sfx2/source/appl/shutdownicon.cxx
+++ b/sfx2/source/appl/shutdownicon.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: shutdownicon.cxx,v $
*
- * $Revision: 1.48 $
+ * $Revision: 1.49 $
*
- * last change: $Author: kz $ $Date: 2006-10-06 10:39:05 $
+ * last change: $Author: kz $ $Date: 2006-10-09 15:56:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -179,9 +179,9 @@ void ShutdownIcon::initSystray()
m_pPlugin = new osl::Module();
if ( m_pPlugin->load( OUString (RTL_CONSTASCII_USTRINGPARAM( STRING( PLUGIN_NAME ) ) ) ) )
{
- m_pInitSystray = (void (*)()) m_pPlugin->getSymbol(
+ m_pInitSystray = m_pPlugin->getFunctionSymbol(
OUString( RTL_CONSTASCII_USTRINGPARAM( "plugin_init_sys_tray" ) ) );
- m_pDeInitSystray = (void (*)()) m_pPlugin->getSymbol(
+ m_pDeInitSystray = m_pPlugin->getFunctionSymbol(
OUString( RTL_CONSTASCII_USTRINGPARAM( "plugin_shutdown_sys_tray" ) ) );
OSL_ASSERT (m_pInitSystray && m_pDeInitSystray);
}