summaryrefslogtreecommitdiff
path: root/src/gui/models
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-08 03:51:32 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-08 03:51:32 +0300
commit90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8 (patch)
treeb6fe4d5494381abfe7800022a67bbdfd2e20f97e /src/gui/models
parentb0d6ef00eebb7dcd03b051db63840c04243a784d (diff)
downloadplus-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.gz
plus-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.bz2
plus-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.xz
plus-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.zip
Remove useless string initialisations.
Diffstat (limited to 'src/gui/models')
-rw-r--r--src/gui/models/modelistmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/models/modelistmodel.cpp b/src/gui/models/modelistmodel.cpp
index 3c39921ad..d1253b9f1 100644
--- a/src/gui/models/modelistmodel.cpp
+++ b/src/gui/models/modelistmodel.cpp
@@ -90,7 +90,7 @@ void ModeListModel::addCustomMode(const std::string &mode)
int ModeListModel::getIndexOf(const std::string &widthXHeightMode)
{
- std::string currentMode("");
+ std::string currentMode;
for (int i = 0; i < getNumberOfElements(); i++)
{
currentMode = getElementAt(i);