From 16fa947b82f9851541121578acad58244157a7ab Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Sun, 7 Jul 2013 12:23:22 +0200 Subject: [PATCH] fixed ifdef --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e845efb..e7b34a4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,7 @@ int main ( int argc, char *argv[] ) { -#if HAVE_KDE +#ifdef HAVE_KDE KAboutData about("SnoreNotify",0,ki18n("SnoreNotify"),Snore::Version::version().toLatin1(), ki18n("A notification deamon."),KAboutData::License_LGPL_V3, ki18n("Copyright (c) 2010-2013 Patrick von Reth ")); KCmdLineArgs::init(argc, argv, &about);