diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 00:36:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 00:36:17 +0300 |
commit | 9bca06b1c7c121f410766ad99b91075902ce24c7 (patch) | |
tree | aa6bbb63cf3a2e111afeaae71edef5f3d9f5b78e /src/gui/windows/inventorywindow.cpp | |
parent | 9093f12ebbfbdacb3df7a5f5fcdda422daa22754 (diff) | |
download | plus-9bca06b1c7c121f410766ad99b91075902ce24c7.tar.gz plus-9bca06b1c7c121f410766ad99b91075902ce24c7.tar.bz2 plus-9bca06b1c7c121f410766ad99b91075902ce24c7.tar.xz plus-9bca06b1c7c121f410766ad99b91075902ce24c7.zip |
move selectionlistener from base into listeners.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 9e2c1a6ff..7066a9c8e 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -103,7 +103,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): Window("Inventory", false, nullptr, "inventory.xml"), ActionListener(), KeyListener(), - gcn::SelectionListener(), + SelectionListener(), InventoryListener(), mInventory(inventory), mItems(new ItemContainer(this, mInventory)), |