summaryrefslogtreecommitdiff
path: root/desktop/source/app/app.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-03-19 16:44:12 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-03-20 11:34:18 +0100
commit52f8321c412cad280c9029f10f9aef03f4f20544 (patch)
tree9942cfe490f7107177ad69175be3039b0f20b32a /desktop/source/app/app.cxx
parent151abb8b2b9d3a22229b98cec12e29484d12109b (diff)
use #if instead of #ifdef for testing config_xxx.hxx macros
http://lists.freedesktop.org/archives/libreoffice/2013-March/047769.html Change-Id: I81ed4500878ff3193e028410a1f0205e28d17fc3
Diffstat (limited to 'desktop/source/app/app.cxx')
-rw-r--r--desktop/source/app/app.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index eeca5a7c3e28..d3e7b26f37ff 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -103,7 +103,7 @@
#include <config_telepathy.h>
-#ifdef ENABLE_TELEPATHY
+#if ENABLE_TELEPATHY
#include <tubes/manager.hxx>
#endif
@@ -555,7 +555,7 @@ Desktop::Desktop()
Desktop::~Desktop()
{
-#ifdef ENABLE_TELEPATHY
+#if ENABLE_TELEPATHY
TeleManager::finalize();
#endif
}
@@ -1619,7 +1619,7 @@ int Desktop::Main()
aOptions.SetVCLSettings();
SetSplashScreenProgress(60);
-#ifdef ENABLE_TELEPATHY
+#if ENABLE_TELEPATHY
bool bListen = rCmdLineArgs.IsInvisible();
TeleManager::init( bListen );
#endif