diff options
| author | Max Horn | 2003-08-01 12:21:04 +0000 |
|---|---|---|
| committer | Max Horn | 2003-08-01 12:21:04 +0000 |
| commit | 0df319e9520aa6fdcaff96f91826ccd7cff2c14a (patch) | |
| tree | 665b51bddbe987051981456dcf7c8c175bbf316c /gui | |
| parent | 64aa3229ad5757d88553531f8c88198711994ac3 (diff) | |
| download | scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.tar.gz scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.tar.bz2 scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.zip | |
#include cleanup (explicityl specify the location for headers from common/, so that we at some point can get rid of -Icommon; exception is made for stdafx.h, since a) we might want to rename it and b) might want to move it to the top level)
svn-id: r9359
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/dialog.h | 2 | ||||
| -rw-r--r-- | gui/newgui.cpp | 2 | ||||
| -rw-r--r-- | gui/newgui.h | 4 | ||||
| -rw-r--r-- | gui/widget.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index 4c184b70ab..e3286fa475 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -21,7 +21,7 @@ #ifndef DIALOG_H #define DIALOG_H -#include "scummsys.h" +#include "common/scummsys.h" #include "widget.h" // For CommandReceiver class NewGui; diff --git a/gui/newgui.cpp b/gui/newgui.cpp index 27aae30d22..5bdcb77df7 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -19,7 +19,7 @@ */ #include "stdafx.h" -#include "util.h" +#include "common/util.h" #include "newgui.h" #include "dialog.h" diff --git a/gui/newgui.h b/gui/newgui.h index c3aceaf902..b7969a3900 100644 --- a/gui/newgui.h +++ b/gui/newgui.h @@ -21,8 +21,8 @@ #ifndef NEWGUI_H #define NEWGUI_H -#include "scummsys.h" -#include "system.h" // For events +#include "common/scummsys.h" +#include "common/system.h" // For events #include "common/str.h" class Dialog; diff --git a/gui/widget.h b/gui/widget.h index 87421e6715..e1c77b959f 100644 --- a/gui/widget.h +++ b/gui/widget.h @@ -21,7 +21,7 @@ #ifndef WIDGET_H #define WIDGET_H -#include "scummsys.h" +#include "common/scummsys.h" #include "common/str.h" class Dialog; |
