From baf5661bcd0a5937211ca93320148102126588f8 Mon Sep 17 00:00:00 2001 From: goldenhawking Date: Thu, 24 Mar 2016 22:01:04 +0800 Subject: [PATCH] In mingw32, WIN32 is not defined, but WINVER is OK --- test_container/testcontainer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_container/testcontainer.h b/test_container/testcontainer.h index c05dda8..4824b0a 100644 --- a/test_container/testcontainer.h +++ b/test_container/testcontainer.h @@ -27,7 +27,7 @@ private: QString m_str_markerLayerName; void confirmLayerNames(); void show_message(QString); -#ifdef WIN32 +#ifdef WINVER protected slots: void slot_message(QString); #endif -- GitLab