summaryrefslogtreecommitdiff
path: root/src/gui/inventorywindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-09 14:57:27 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-09 15:59:33 +0300
commitdd4d44a07d3a63ced0eec51c30b75887792c4a36 (patch)
tree26f3da1fd25d91eb8483dc1b819a1d3a3552e6af /src/gui/inventorywindow.cpp
parent099c67f93cf49cda90be55606e1b744c47624b92 (diff)
downloadplus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.gz
plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.bz2
plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.tar.xz
plus-dd4d44a07d3a63ced0eec51c30b75887792c4a36.zip
some more style and cast fixes.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r--src/gui/inventorywindow.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp
index fe51018bf..22fea71c7 100644
--- a/src/gui/inventorywindow.cpp
+++ b/src/gui/inventorywindow.cpp
@@ -86,7 +86,7 @@ public:
}
};
-InventoryWindow::WindowList InventoryWindow::instances;
+InventoryWindow::WindowList InventoryWindow::invInstances;
InventoryWindow::InventoryWindow(Inventory *const inventory):
Window("Inventory", false, nullptr, "inventory.xml"),
@@ -103,7 +103,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mEquipmentButton(nullptr),
mStoreButton(nullptr),
mRetrieveButton(nullptr),
- mCloseButton(nullptr),
+ mInvCloseButton(nullptr),
mWeightBar(nullptr),
mSlotsBar(new ProgressBar(this, 0.0f, 100, 0, Theme::PROG_INVY_SLOTS)),
mFilter(nullptr),
@@ -205,7 +205,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
{
mStoreButton = new Button(this, _("Store"), "store", this);
mRetrieveButton = new Button(this, _("Retrieve"), "retrieve", this);
- mCloseButton = new Button(this, _("Close"), "close", this);
+ mInvCloseButton = new Button(this, _("Close"), "close", this);
mSlotsBarCell = &place(0, 0, mSlotsBar, 6);
mSortDropDownCell = &place(6, 0, mSortDropDown, 1);
@@ -216,7 +216,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
place(0, 2, invenScroll, 7, 4);
place(0, 6, mStoreButton);
place(1, 6, mRetrieveButton);
- place(6, 6, mCloseButton);
+ place(6, 6, mInvCloseButton);
}
Layout &layout = getLayout();
@@ -224,7 +224,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mInventory->addInventoyListener(this);
- instances.push_back(this);
+ invInstances.push_back(this);
if (inventory && inventory->isMainInventory())
{
@@ -232,8 +232,8 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
}
else
{
- if (!instances.empty())
- instances.front()->updateDropButton();
+ if (!invInstances.empty())
+ invInstances.front()->updateDropButton();
}
loadWindowState();
@@ -247,10 +247,10 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
InventoryWindow::~InventoryWindow()
{
- instances.remove(this);
+ invInstances.remove(this);
mInventory->removeInventoyListener(this);
- if (!instances.empty())
- instances.front()->updateDropButton();
+ if (!invInstances.empty())
+ invInstances.front()->updateDropButton();
delete mSortModel;
mSortModel = nullptr;
}
@@ -707,7 +707,7 @@ bool InventoryWindow::isInputFocused() const
bool InventoryWindow::isAnyInputFocused()
{
- FOR_EACH (WindowList::const_iterator, it, instances)
+ FOR_EACH (WindowList::const_iterator, it, invInstances)
{
if ((*it) && (*it)->isInputFocused())
return true;