aboutsummaryrefslogtreecommitdiff
path: root/scumm/dialogs.h
diff options
context:
space:
mode:
authorMax Horn2003-11-10 23:40:48 +0000
committerMax Horn2003-11-10 23:40:48 +0000
commit22c22d1e81b25c103100b6c8347b154f16dafc5e (patch)
tree233ff187add3c769346b5e7c89ee954eb967b477 /scumm/dialogs.h
parent5c2a3da7f2f8f45e20b732defbaed7aa47af00c8 (diff)
downloadscummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.gz
scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.bz2
scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.zip
added namespace GUI
svn-id: r11255
Diffstat (limited to 'scumm/dialogs.h')
-rw-r--r--scumm/dialogs.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/scumm/dialogs.h b/scumm/dialogs.h
index ab6999d38d..f7d22bbc55 100644
--- a/scumm/dialogs.h
+++ b/scumm/dialogs.h
@@ -30,7 +30,11 @@
#include "scumm/help.h"
#endif
-class ListWidget;
+namespace GUI {
+ class ListWidget;
+}
+using namespace GUI; // FIXME: Bad style to use a using directive in a header
+
namespace Scumm {
@@ -46,8 +50,6 @@ protected:
ScummEngine *_scumm;
- void addResText(int x, int y, int w, int h, int resID);
-
// Query a string from the resources
const String queryResString(int stringno);
};