diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 22:17:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:22 +0300 |
commit | 43c3aff88f86612b44e1f4789f4f35b2599df84f (patch) | |
tree | 1585f6db85dbccc767918282c5d16824c3a2d7e3 /src/game.cpp | |
parent | 78c28d368c383ef3705f9128b0ed0a5b36996da4 (diff) | |
download | plus-43c3aff88f86612b44e1f4789f4f35b2599df84f.tar.gz plus-43c3aff88f86612b44e1f4789f4f35b2599df84f.tar.bz2 plus-43c3aff88f86612b44e1f4789f4f35b2599df84f.tar.xz plus-43c3aff88f86612b44e1f4789f4f35b2599df84f.zip |
move virtual member calls from shopwindow constuctor into postInit.
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp index 5ed8481a9..71d3ff4ff 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -222,6 +222,7 @@ static void createGuiWindows() inventoryWindow = new InventoryWindow(PlayerInfo::getInventory()); inventoryWindow->postInit(); shopWindow = new ShopWindow; + shopWindow->postInit(); skillDialog = new SkillDialog; minimap = new Minimap; debugWindow = new DebugWindow; |