summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-09-11 16:07:26 +0300
committerAndrei Karas <akaras@inbox.ru>2011-09-11 16:07:26 +0300
commitc38e43cee40cfd7cad2a92ea704aa26c23523b67 (patch)
treea063389e5c7ddbaa448d495f3573bedf02e983b5 /src/game.cpp
parent56807a19c2414934b405658da99b67fb53a129a3 (diff)
downloadplus-c38e43cee40cfd7cad2a92ea704aa26c23523b67.tar.gz
plus-c38e43cee40cfd7cad2a92ea704aa26c23523b67.tar.bz2
plus-c38e43cee40cfd7cad2a92ea704aa26c23523b67.tar.xz
plus-c38e43cee40cfd7cad2a92ea704aa26c23523b67.zip
Add own theme xml configuration for each shortcuts based window.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 3c7579d78..6eda01640 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -216,7 +216,7 @@ static void createGuiWindows()
minimap = new Minimap;
helpWindow = new HelpWindow;
debugWindow = new DebugWindow;
- itemShortcutWindow = new ShortcutWindow("ItemShortcut");
+ itemShortcutWindow = new ShortcutWindow("ItemShortcut", "items.xml");
for (int f = 0; f < SHORTCUT_TABS; f ++)
{
itemShortcutWindow->addTab(toString(f + 1),
@@ -230,13 +230,13 @@ static void createGuiWindows()
}
emoteShortcutWindow = new ShortcutWindow("EmoteShortcut",
- new EmoteShortcutContainer);
+ new EmoteShortcutContainer, "emotes.xml");
outfitWindow = new OutfitWindow();
specialsWindow = new SpecialsWindow();
dropShortcutWindow = new ShortcutWindow("DropShortcut",
- new DropShortcutContainer);
+ new DropShortcutContainer, "drops.xml");
- spellShortcutWindow = new ShortcutWindow("SpellShortcut",
+ spellShortcutWindow = new ShortcutWindow("SpellShortcut", "spells.xml",
265, 328);
for (int f = 0; f < SPELL_SHORTCUT_TABS; f ++)
{