From a9f55c3da08f3f0221447d7fcb75e2c81412eafd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 16 Feb 2013 19:09:09 +0100 Subject: [PATCH] Replace deprecated NO_DEBUG to NDEBUG --- juk/actioncollection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juk/actioncollection.cpp b/juk/actioncollection.cpp index 4940f556..366422a4 100644 --- a/juk/actioncollection.cpp +++ b/juk/actioncollection.cpp @@ -29,7 +29,7 @@ namespace ActionCollection TDEAction *action(const char *key) { -#ifndef NO_DEBUG +#ifndef NDEBUG TDEAction *a = actions()->action(key); if(!a) kdWarning(65432) << "TDEAction \"" << key << "\" is not defined yet." << endl;