summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/shortcutwindow.cpp8
-rw-r--r--src/gui/shortcutwindow.h7
2 files changed, 9 insertions, 6 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);
diff --git a/src/gui/shortcutwindow.h b/src/gui/shortcutwindow.h
index 5242fca2f..530a272e3 100644
--- a/src/gui/shortcutwindow.h
+++ b/src/gui/shortcutwindow.h
@@ -42,10 +42,11 @@ class ShortcutWindow final : public Window
*/
ShortcutWindow(const std::string &title,
ShortcutContainer *const content,
- std::string skinFile = "",
+ const std::string &skinFile = "",
int width = 0, int height = 0);
- ShortcutWindow(const std::string &title, std::string skinFile = "",
+ ShortcutWindow(const std::string &title,
+ const std::string &skinFile = "",
const int width = 0, const int height = 0);
A_DELETE_COPY(ShortcutWindow)
@@ -55,7 +56,7 @@ class ShortcutWindow final : public Window
*/
~ShortcutWindow();
- void addTab(std::string name, ShortcutContainer *const content);
+ void addTab(const std::string &name, ShortcutContainer *const content);
int getTabIndex() const A_WARN_UNUSED;