diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-23 19:10:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-23 19:10:51 +0300 |
commit | 9336f9ccd10f25f737cad530e8aec841d858c350 (patch) | |
tree | c5b98bb3c390eaea648095b2250516824d9904e7 /src/gui/windows | |
parent | 85c2332abec927c17d7396bf736da8333073fc97 (diff) | |
download | plus-9336f9ccd10f25f737cad530e8aec841d858c350.tar.gz plus-9336f9ccd10f25f737cad530e8aec841d858c350.tar.bz2 plus-9336f9ccd10f25f737cad530e8aec841d858c350.tar.xz plus-9336f9ccd10f25f737cad530e8aec841d858c350.zip |
Fix style issues.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 9 | ||||
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 10 |
2 files changed, 8 insertions, 11 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 726774cdf..7087d563b 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -719,12 +719,9 @@ void ChatWindow::mousePressed(MouseEvent &event) } else { - if (cTab) - { - popupMenu->showChatPopup(viewport->mMouseX, - viewport->mMouseY, - cTab); - } + popupMenu->showChatPopup(viewport->mMouseX, + viewport->mMouseY, + cTab); } } } diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 05bcda0ae..4ac19daaa 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -172,11 +172,6 @@ InventoryWindow::InventoryWindow(Inventory *const inventory) : mItems->addSelectionListener(this); - ScrollArea *const invenScroll = new ScrollArea(this, mItems, - fromBool(getOptionBool("showbackground"), Opaque), - "inventory_background.xml"); - invenScroll->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER); - const int size = config.getIntValue("fontSize"); mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 16); mFilter->addActionListener(this); @@ -194,6 +189,11 @@ InventoryWindow::InventoryWindow(Inventory *const inventory) : return; } + ScrollArea *const invenScroll = new ScrollArea(this, mItems, + fromBool(getOptionBool("showbackground"), Opaque), + "inventory_background.xml"); + invenScroll->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER); + switch (mInventory->getType()) { case InventoryType::Inventory: |