aboutsummaryrefslogtreecommitdiff
path: root/gui/widget.cpp
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/widget.cpp
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/widget.cpp')
-rw-r--r--gui/widget.cpp5
1 files changed, 0 insertions, 5 deletions
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) {