summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/shutdownicon.cxx8
-rw-r--r--sfx2/source/appl/shutdownicon.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/appl/shutdownicon.cxx b/sfx2/source/appl/shutdownicon.cxx
index ba6fd3f307bb..bcb85ce490d3 100644
--- a/sfx2/source/appl/shutdownicon.cxx
+++ b/sfx2/source/appl/shutdownicon.cxx
@@ -76,7 +76,7 @@ using namespace ::rtl;
using namespace ::sfx2;
#ifdef ENABLE_QUICKSTART_APPLET
-# if !defined(WIN32) && !defined(QUARTZ)
+# if !defined(WIN32) && !defined(MACOSX)
extern "C" { static void SAL_CALL thisModule() {} }
# endif
#endif
@@ -137,7 +137,7 @@ bool ShutdownIcon::LoadModule( osl::Module **pModule,
*pDeInit = win32_shutdown_sys_tray;
}
return true;
-# elif defined QUARTZ
+# elif defined MACOSX
*pInit = aqua_init_systray;
*pDeInit = aqua_shutdown_systray;
return true;
@@ -749,7 +749,7 @@ void ShutdownIcon::LeaveModalMode()
#ifdef WNT
// defined in shutdowniconw32.cxx
-#elif defined QUARTZ
+#elif defined MACOSX
// defined in shutdowniconaqua.cxx
#else
bool ShutdownIcon::IsQuickstarterInstalled()
@@ -828,7 +828,7 @@ rtl::OUString ShutdownIcon::getShortcutName()
bool ShutdownIcon::GetAutostart( )
{
-#if defined QUARTZ
+#if defined MACOSX
return true;
#else
bool bRet = false;
diff --git a/sfx2/source/appl/shutdownicon.hxx b/sfx2/source/appl/shutdownicon.hxx
index cfa5e5371409..bbcef09d31a8 100644
--- a/sfx2/source/appl/shutdownicon.hxx
+++ b/sfx2/source/appl/shutdownicon.hxx
@@ -172,7 +172,7 @@ extern "C" {
// builtin win32 systray
void win32_init_sys_tray();
void win32_shutdown_sys_tray();
-# elif defined QUARTZ
+# elif defined MACOSX
void aqua_init_systray();
void aqua_shutdown_systray();
# endif