From 8a2243ff36fc7938018cc17ce1da5e20ae2d4409 Mon Sep 17 00:00:00 2001 From: Chris Warren-Smith Date: Wed, 17 Aug 2011 08:50:26 +1000 Subject: [PATCH] BADA: Remove BADA defined check. Was a temp fix for simulator build --- base/plugins.cpp | 2 +- common/translation.cpp | 2 +- engines/engine.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base/plugins.cpp b/base/plugins.cpp index 5de18f96782..737ffa3b59f 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -190,7 +190,7 @@ public: // static/dynamic plugin, like it's done for the engines LINK_PLUGIN(AUTO) LINK_PLUGIN(NULL) - #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) && !defined(BADA) + #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) LINK_PLUGIN(WINDOWS) #endif #if defined(USE_ALSA) diff --git a/common/translation.cpp b/common/translation.cpp index 9370d1892ea..3570e8c5aed 100644 --- a/common/translation.cpp +++ b/common/translation.cpp @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#if defined(WIN32) && !defined(BADA) +#if defined(WIN32) #define WIN32_LEAN_AND_MEAN #include // winnt.h defines ARRAYSIZE, but we want our own one... - this is needed before including util.h diff --git a/engines/engine.cpp b/engines/engine.cpp index 5bbff81981a..ee1d53fa9c7 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -21,7 +21,7 @@ #define FORBIDDEN_SYMBOL_EXCEPTION_getcwd -#if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) && !defined(BADA) +#if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) #define WIN32_LEAN_AND_MEAN #include #include