diff options
author | Max Horn | 2005-04-10 14:49:57 +0000 |
---|---|---|
committer | Max Horn | 2005-04-10 14:49:57 +0000 |
commit | a3a8cb65c90c166f21f2ccdaeba221ca835901eb (patch) | |
tree | 2026c59e26a50d90c4a61f6ff0cafab1dae7befd /gui | |
parent | 3f114bb724e321dff166aafb35bf94e8f0b1805e (diff) | |
download | scummvm-rg350-a3a8cb65c90c166f21f2ccdaeba221ca835901eb.tar.gz scummvm-rg350-a3a8cb65c90c166f21f2ccdaeba221ca835901eb.tar.bz2 scummvm-rg350-a3a8cb65c90c166f21f2ccdaeba221ca835901eb.zip |
Fix compilation on OS X
svn-id: r17515
Diffstat (limited to 'gui')
-rw-r--r-- | gui/browser.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gui/browser.cpp b/gui/browser.cpp index 5294c9860c..389e346090 100644 --- a/gui/browser.cpp +++ b/gui/browser.cpp @@ -29,6 +29,12 @@ namespace GUI { +enum { + kChooseCmd = 'Chos', + kGoUpCmd = 'GoUp' +}; + + #ifdef MACOSX /* On Mac OS X, use the native file selector dialog. We could do the same for * other operating systems. @@ -120,11 +126,6 @@ int DirBrowserDialog::runModal() { * - others??? */ -enum { - kChooseCmd = 'Chos', - kGoUpCmd = 'GoUp' -}; - DirBrowserDialog::DirBrowserDialog(const char *title) : Dialog(20, 10, 320 -2 * 20, 200 - 2 * 10) { |