From 4200d1f4164a82739e3e54f5a85f25910c8a8d1d Mon Sep 17 00:00:00 2001
From: =?utf8?q?W=C5=82odzimierz=20Skiba?= <abx@abx.art.pl>
Date: Sun, 17 Oct 2004 16:28:20 +0000
Subject: [PATCH] __WXDEBUG__ is defined/undefined, not 0/1!

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 src/common/wincmn.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp
index 320bd80bee..690233bc75 100644
--- a/src/common/wincmn.cpp
+++ b/src/common/wincmn.cpp
@@ -2210,7 +2210,7 @@ void wxWindowBase::OnMiddleClick( wxMouseEvent& event )
 #else
                                       "",
 #endif
-#if __WXDEBUG__
+#ifdef __WXDEBUG__
                                       _T(" Debug build"),
 #else
                                       _T(""),
-- 
2.47.2