summaryrefslogtreecommitdiffstats
path: root/src/kile/kiledebug.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 03:05:17 +0000
commit2c945cd914550233ed352ff195afeb4dd793f122 (patch)
tree4796bfab5733942b90b5a66bb05655be5fdcca03 /src/kile/kiledebug.h
downloadkile-2c945cd914550233ed352ff195afeb4dd793f122.tar.gz
kile-2c945cd914550233ed352ff195afeb4dd793f122.zip
Added abandoned KDE3 version of Kile
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kile@1088055 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kile/kiledebug.h')
-rw-r--r--src/kile/kiledebug.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/kile/kiledebug.h b/src/kile/kiledebug.h
new file mode 100644
index 0000000..b388aca
--- /dev/null
+++ b/src/kile/kiledebug.h
@@ -0,0 +1,21 @@
+/***************************************************************************
+* begin : 26.09.2007
+* copyright : (C) Thomas Braun
+* email : braun _aeht_ physik.fu-berlin.de
+****************************************************************************/
+
+/***************************************************************************
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+***************************************************************************/
+#include <kdebug.h>
+
+#ifdef NDEBUG
+ #define KILE_DEBUG(A) if (true); else kdDebug()
+#else
+ #define KILE_DEBUG(A) kdDebug(A)
+#endif