Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksoid <aleksoid@users.sourceforge.net>2009-06-02 08:12:24 +0400
committerAleksoid <aleksoid@users.sourceforge.net>2009-06-02 08:12:24 +0400
commita42adc0128c90d1ea39c113cdacafc59019d37e0 (patch)
tree29600661572db2f53c9285533c3d9c72a341c734 /include/qt
parent7cf3a5bd99e6deed4dd3ddda0756984f59ba0e51 (diff)
FIX : Debug version compile error after QT SDK update;
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1143 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'include/qt')
-rw-r--r--include/qt/Debugging.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/qt/Debugging.h b/include/qt/Debugging.h
index d1071826b..81107a3aa 100644
--- a/include/qt/Debugging.h
+++ b/include/qt/Debugging.h
@@ -117,7 +117,7 @@ extern "C" {
/*
* define DEBUGLEVEL
*/
-#if DEBUG
+#if _DEBUG
#if PRODUCTION
#define DEBUGLEVEL DEBUG_LEVEL_PRODUCTION
#elif PERFORMANCE
@@ -364,7 +364,7 @@ extern "C" {
*/
#ifndef DEBUGGER
- #if DEBUG
+ #if _DEBUG
#define DEBUGGER() \
SafeDebugger()
#else
@@ -373,7 +373,7 @@ extern "C" {
#endif
#ifndef DEBUGSTR
- #if DEBUG
+ #if _DEBUG
#define DEBUGSTR(str) \
SafeDebugStr(str)
#else
@@ -450,7 +450,7 @@ extern "C" {
* prevent conflicts with developer code.
*/
-#if DEBUG
+#if _DEBUG
#define DPRINTF(x) dprintf x
#else
#define DPRINTF(x) { }