diff options
author | Max Horn | 2010-04-06 09:26:43 +0000 |
---|---|---|
committer | Max Horn | 2010-04-06 09:26:43 +0000 |
commit | 894e2aefe6042cea38b93439812193f8ceb8356b (patch) | |
tree | 7295f1cba5168928151bbee324cb5db1ab772ae1 /gui/dialog.h | |
parent | 745edbadc7b3841556c2e8962725bfd3de8a4dd3 (diff) | |
download | scummvm-rg350-894e2aefe6042cea38b93439812193f8ceb8356b.tar.gz scummvm-rg350-894e2aefe6042cea38b93439812193f8ceb8356b.tar.bz2 scummvm-rg350-894e2aefe6042cea38b93439812193f8ceb8356b.zip |
GUI: Unify various definitions of kOKCmd and move it to namespace GUI
svn-id: r48564
Diffstat (limited to 'gui/dialog.h')
-rw-r--r-- | gui/dialog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index dcc7d6fe27..5008f272ba 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -38,7 +38,8 @@ class PopUpWidget; // Some "common" commands sent to handleCommand() enum { - kCloseCmd = 'clos' + kCloseCmd = 'clos', + kOKCmd = 'ok ' }; class Dialog : public GuiObject { |