diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-21 19:29:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-21 23:18:46 +0300 |
commit | cff8c1925f426dafaeb32def5fc56f170bafba39 (patch) | |
tree | 7e1d61db0d795e7d810124112f3f461b3755b3a4 /src/gui/shortcutwindow.cpp | |
parent | b1e41be0a3f87f42f8bab2416a8f1ce432f95fe2 (diff) | |
download | plus-cff8c1925f426dafaeb32def5fc56f170bafba39.tar.gz plus-cff8c1925f426dafaeb32def5fc56f170bafba39.tar.bz2 plus-cff8c1925f426dafaeb32def5fc56f170bafba39.tar.xz plus-cff8c1925f426dafaeb32def5fc56f170bafba39.zip |
Improve shortcutswindow class.
Diffstat (limited to 'src/gui/shortcutwindow.cpp')
-rw-r--r-- | src/gui/shortcutwindow.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index 6f00e36c2..ef893c1ba 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -54,7 +54,7 @@ class ShortcutTab final : public Tab ShortcutWindow::ShortcutWindow(const std::string &title, ShortcutContainer *const content, - std::string skinFile, + const std::string &skinFile, int width, int height) : Window("Window", false, nullptr, skinFile), mItems(content), @@ -104,7 +104,8 @@ ShortcutWindow::ShortcutWindow(const std::string &title, enableVisibleSound(true); } -ShortcutWindow::ShortcutWindow(const std::string &title, std::string skinFile, +ShortcutWindow::ShortcutWindow(const std::string &title, + const std::string &skinFile, const int width, const int height) : Window("Window", false, nullptr, skinFile), mItems(nullptr), @@ -152,7 +153,8 @@ ShortcutWindow::~ShortcutWindow() mItems = nullptr; } -void ShortcutWindow::addTab(std::string name, ShortcutContainer *const content) +void ShortcutWindow::addTab(const std::string &name, + ShortcutContainer *const content) { ScrollArea *const scroll = new ScrollArea(content, false); scroll->setPosition(SCROLL_PADDING, SCROLL_PADDING); |