diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-11 11:07:23 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-11 11:16:59 +0200 |
commit | e103887c8c158e7059a586ef5a5f7b234c547dfe (patch) | |
tree | 6cbcabd6d270e595578cc283afadd5b4023bd718 /desktop/source/app | |
parent | 4d23222b15ac0034e265441c71405a48403721f8 (diff) |
QUARTZ is equivalent to MACOSX
So just check MACOSX in the sources, and don't pass any -DQUARTZ to
compilations.
Change-Id: Ia1de6024810f81f1eea01b8eb0b885d9d1ee8e20
Diffstat (limited to 'desktop/source/app')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 02f6001d4daa..b7b9a6cef9d6 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1839,10 +1839,10 @@ sal_Bool Desktop::InitializeQuickstartMode( Reference< XMultiServiceFactory >& r // do nothing if service is not available // #i105753# the following if was invented for performance - // unfortunately this broke the QUARTZ behavior which is to always run + // unfortunately this broke the Mac behavior which is to always run // in quickstart mode since Mac applications do not usually quit // when the last document closes - #ifndef QUARTZ + #ifndef MACOSX if ( bQuickstart ) #endif { |