diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-17 22:59:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-17 22:59:37 +0300 |
commit | 15285d0863273f8810aa7ef260873fee3b533547 (patch) | |
tree | 57c425e2db73064fbace6a13900df747c5d52a29 /src/gui/windows/shortcutwindow.h | |
parent | 1276fff7557b881f90559d8c872861a2b4f8015a (diff) | |
download | plus-15285d0863273f8810aa7ef260873fee3b533547.tar.gz plus-15285d0863273f8810aa7ef260873fee3b533547.tar.bz2 plus-15285d0863273f8810aa7ef260873fee3b533547.tar.xz plus-15285d0863273f8810aa7ef260873fee3b533547.zip |
add restrict into shortcutwindow.
Diffstat (limited to 'src/gui/windows/shortcutwindow.h')
-rw-r--r-- | src/gui/windows/shortcutwindow.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/windows/shortcutwindow.h b/src/gui/windows/shortcutwindow.h index 82968eaf2..f7fc01c9f 100644 --- a/src/gui/windows/shortcutwindow.h +++ b/src/gui/windows/shortcutwindow.h @@ -40,13 +40,13 @@ class ShortcutWindow final : public Window /** * Constructor. */ - ShortcutWindow(const std::string &title, - ShortcutContainer *const content, - const std::string &skinFile = "", + ShortcutWindow(const std::string &restrict title, + ShortcutContainer *restrict const content, + const std::string &restrict skinFile = "", int width = 0, int height = 0); - ShortcutWindow(const std::string &title, - const std::string &skinFile = "", + ShortcutWindow(const std::string &restrict title, + const std::string &restrict skinFile = "", const int width = 0, const int height = 0); A_DELETE_COPY(ShortcutWindow) |