aboutsummaryrefslogtreecommitdiff
path: root/scumm/dialogs.cpp
diff options
context:
space:
mode:
authorMax Horn2003-11-03 23:34:27 +0000
committerMax Horn2003-11-03 23:34:27 +0000
commit93037c3fed09da2318469f6256a9e7d206285254 (patch)
tree02dd1834999779a8de938887231d121ee7bb9409 /scumm/dialogs.cpp
parent8a8743a0428880dcad4ef52ab69c06b8da7ab3f7 (diff)
downloadscummvm-rg350-93037c3fed09da2318469f6256a9e7d206285254.tar.gz
scummvm-rg350-93037c3fed09da2318469f6256a9e7d206285254.tar.bz2
scummvm-rg350-93037c3fed09da2318469f6256a9e7d206285254.zip
oops this wasn't meant to be there
svn-id: r11121
Diffstat (limited to 'scumm/dialogs.cpp')
-rw-r--r--scumm/dialogs.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp
index 17447d126f..bb7b7b8977 100644
--- a/scumm/dialogs.cpp
+++ b/scumm/dialogs.cpp
@@ -276,23 +276,6 @@ enum {
kMainMenuHeight = 7*rowHeight + 3*5 + 7 + 5
};
-class SeperatorWidget : public Widget {
-protected:
- typedef Common::String String;
-
- String _label;
- int _align;
-public:
- SeperatorWidget(GuiObject *boss, int x, int y, int w) : Widget(boss, x, y, w, 2) { }
-
-protected:
- void drawWidget(bool hilite) {
- g_gui.hLine(_x, _y, _x + _w - 2, g_gui._color);
- g_gui.hLine(_x+1, _y+1, _x + _w - 1, g_gui._shadowcolor);
- }
-};
-
-
MainMenuDialog::MainMenuDialog(ScummEngine *scumm)
: ScummDialog(scumm, (320 - kMainMenuWidth)/2, (200 - kMainMenuHeight)/2, kMainMenuWidth, kMainMenuHeight) {
int y = 7;