diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-04 18:20:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-04 18:22:02 +0300 |
commit | 5d84dae3577a9d4112c765636171bd0830932f89 (patch) | |
tree | bcf0cc16b45e8c4b31e24d5ad2d2c89be8e44dfb /src/gui/shortcut/itemshortcut.h | |
parent | ec3c69c15907532f5b1a9a5998dbc7676c6b5f9e (diff) | |
download | plus-5d84dae3577a9d4112c765636171bd0830932f89.tar.gz plus-5d84dae3577a9d4112c765636171bd0830932f89.tar.bz2 plus-5d84dae3577a9d4112c765636171bd0830932f89.tar.xz plus-5d84dae3577a9d4112c765636171bd0830932f89.zip |
Fix code style.
Diffstat (limited to 'src/gui/shortcut/itemshortcut.h')
-rw-r--r-- | src/gui/shortcut/itemshortcut.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/shortcut/itemshortcut.h b/src/gui/shortcut/itemshortcut.h index 7f351cabc..b7ea160a7 100644 --- a/src/gui/shortcut/itemshortcut.h +++ b/src/gui/shortcut/itemshortcut.h @@ -74,11 +74,11 @@ class ItemShortcut final ItemColor getItemColor(const int index) const A_WARN_UNUSED { return mItemColors[index]; } - void setItemData(const int index, + void setItemData(const size_t index, const std::string &data) { mItemData[index] = data; } - std::string getItemData(const int index) const A_WARN_UNUSED + std::string getItemData(const size_t index) const A_WARN_UNUSED { return mItemData[index]; } /** @@ -104,7 +104,7 @@ class ItemShortcut final const int item, const ItemColor color); - void setItemFast(const int index, + void setItemFast(const size_t index, const int item, const ItemColor color); |