diff options
author | Max Horn | 2003-11-10 23:40:48 +0000 |
---|---|---|
committer | Max Horn | 2003-11-10 23:40:48 +0000 |
commit | 22c22d1e81b25c103100b6c8347b154f16dafc5e (patch) | |
tree | 233ff187add3c769346b5e7c89ee954eb967b477 /gui/message.cpp | |
parent | 5c2a3da7f2f8f45e20b732defbaed7aa47af00c8 (diff) | |
download | scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.gz scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.bz2 scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.zip |
added namespace GUI
svn-id: r11255
Diffstat (limited to 'gui/message.cpp')
-rw-r--r-- | gui/message.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/message.cpp b/gui/message.cpp index 5f42ffe192..faab790abb 100644 --- a/gui/message.cpp +++ b/gui/message.cpp @@ -25,6 +25,8 @@ #include "gui/newgui.h" #include "gui/widget.h" +namespace GUI { + enum { kOkCmd = 'OK ', kCancelCmd = 'CNCL' @@ -162,3 +164,5 @@ void TimedMessageDialog::handleTickle() { if (g_system->get_msecs() > _timer) close(); } + +} // End of namespace GUI |