aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2004-05-05 01:19:42 +0000
committerMax Horn2004-05-05 01:19:42 +0000
commit5d0f0ea0c6afd7defaba3df69b39879a63256776 (patch)
tree237c6fa267e033fc24089fbfbda66324deee0816 /gui
parent163dc349b6c9110cfb497266b246b9b8806a7012 (diff)
downloadscummvm-rg350-5d0f0ea0c6afd7defaba3df69b39879a63256776.tar.gz
scummvm-rg350-5d0f0ea0c6afd7defaba3df69b39879a63256776.tar.bz2
scummvm-rg350-5d0f0ea0c6afd7defaba3df69b39879a63256776.zip
Added generic variable size stack class - COMPLETELY UNTESTED. Really should add some unit tests for this...
svn-id: r13776
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.h b/gui/newgui.h
index 7a08e7dbfa..13872db69f 100644
--- a/gui/newgui.h
+++ b/gui/newgui.h
@@ -56,7 +56,7 @@ using Graphics::kTextAlignRight;
// Simple dialog stack class
// Anybody nesting dialogs deeper than 4 is mad anyway
-typedef Common::Stack<Dialog *> DialogStack;
+typedef Common::FixedStack<Dialog *> DialogStack;
/**