aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2003-07-30 18:40:28 +0000
committerMax Horn2003-07-30 18:40:28 +0000
commit26d05c0190c9cca1444cc7a004c1149b3358ab10 (patch)
treeb4b472b94378fe50cffd6b05313d9e94c73cb70d /gui
parentcae96f35b071de517b0097419504678c3d271629 (diff)
downloadscummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.tar.gz
scummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.tar.bz2
scummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.zip
the VC warning for unknown pragmas is now gloabally disabled, no need to work around it locally
svn-id: r9300
Diffstat (limited to 'gui')
-rw-r--r--gui/PopUpWidget.cpp4
-rw-r--r--gui/newgui.cpp4
-rw-r--r--gui/widget.cpp5
3 files changed, 0 insertions, 13 deletions
diff --git a/gui/PopUpWidget.cpp b/gui/PopUpWidget.cpp
index 2a8402fe98..dfd168bd47 100644
--- a/gui/PopUpWidget.cpp
+++ b/gui/PopUpWidget.cpp
@@ -24,10 +24,6 @@
#include "newgui.h"
#include "common/engine.h"
-#ifdef _MSC_VER
-# pragma warning( disable : 4068 ) // unknown pragmas
-#endif
-
#define UP_DOWN_BOX_HEIGHT 10
// Little up/down arrow
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 28b76f4561..8e8f687732 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -27,10 +27,6 @@
# include "palm.h"
#endif
-#ifdef _MSC_VER
-# pragma warning( disable : 4068 ) // unknown pragma
-#endif
-
/*
* TODO list
diff --git a/gui/widget.cpp b/gui/widget.cpp
index 4eadad7956..d16de51d0c 100644
--- a/gui/widget.cpp
+++ b/gui/widget.cpp
@@ -24,11 +24,6 @@
#include "newgui.h"
-#ifdef _MSC_VER
-# pragma warning( disable : 4068 ) // unknown pragma
-#endif
-
-
Widget::Widget (Dialog *boss, int x, int y, int w, int h)
: _type(0), _boss(boss), _x(x), _y(y), _w(w), _h(h),
_id(0), _flags(0), _hasFocus(false) {