aboutsummaryrefslogtreecommitdiff
path: root/common/debugger.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 /common/debugger.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 'common/debugger.h')
-rw-r--r--common/debugger.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/common/debugger.h b/common/debugger.h
index 7946e5940d..1da3ad7319 100644
--- a/common/debugger.h
+++ b/common/debugger.h
@@ -21,7 +21,9 @@
#ifndef COMMON_DEBUGGER_H
#define COMMON_DEBUGGER_H
-class ConsoleDialog;
+namespace GUI {
+ class ConsoleDialog;
+};
namespace Common {
@@ -71,7 +73,7 @@ private:
bool _isAttached;
char *_errStr;
bool _firstTime;
- ConsoleDialog *_debuggerDialog;
+ GUI::ConsoleDialog *_debuggerDialog;
protected:
void detach();
@@ -87,8 +89,8 @@ protected:
void DCmd_Register(const char *cmdname, DebugProc pointer);
#if USE_CONSOLE
- static bool debuggerInputCallback(ConsoleDialog *console, const char *input, void *refCon);
- static bool debuggerCompletionCallback(ConsoleDialog *console, const char *input, char*& completion, void *refCon);
+ static bool debuggerInputCallback(GUI::ConsoleDialog *console, const char *input, void *refCon);
+ static bool debuggerCompletionCallback(GUI::ConsoleDialog *console, const char *input, char*& completion, void *refCon);
#endif
};