diff options
-rw-r--r-- | sfx2/source/appl/shutdownicon.hxx | 3 | ||||
-rw-r--r-- | sfx2/source/appl/shutdowniconunx.cxx | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sfx2/source/appl/shutdownicon.hxx b/sfx2/source/appl/shutdownicon.hxx index a36547e11381..6965f42b06b2 100644 --- a/sfx2/source/appl/shutdownicon.hxx +++ b/sfx2/source/appl/shutdownicon.hxx @@ -170,9 +170,6 @@ extern "C" { void aqua_init_systray(); void aqua_shutdown_systray(); # endif - // external plugin systray impl. - void plugin_init_sys_tray(); - void plugin_shutdown_sys_tray(); } #endif diff --git a/sfx2/source/appl/shutdowniconunx.cxx b/sfx2/source/appl/shutdowniconunx.cxx index 746819d6fd20..199674f13909 100644 --- a/sfx2/source/appl/shutdowniconunx.cxx +++ b/sfx2/source/appl/shutdowniconunx.cxx @@ -55,6 +55,13 @@ using namespace ::osl; +extern "C" { + +void SAL_DLLPUBLIC_EXPORT plugin_init_sys_tray(); +void SAL_DLLPUBLIC_EXPORT plugin_shutdown_sys_tray(); + +} + static ResMgr *pVCLResMgr; static GtkStatusIcon* pTrayIcon; static GtkWidget *pExitMenuItem = NULL; @@ -360,7 +367,7 @@ static void notify_file_changed(GFileMonitor * /*gfilemonitor*/, GFile * /*arg1* } #endif -void SAL_DLLPUBLIC_EXPORT plugin_init_sys_tray() +void plugin_init_sys_tray() { ::SolarMutexGuard aGuard; @@ -411,7 +418,7 @@ void SAL_DLLPUBLIC_EXPORT plugin_init_sys_tray() #endif } -void SAL_DLLPUBLIC_EXPORT plugin_shutdown_sys_tray() +void plugin_shutdown_sys_tray() { ::SolarMutexGuard aGuard; if( !pTrayIcon ) |