diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-08 23:02:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-08 23:02:06 +0300 |
commit | 7e66a4606bb15d98197f71245fe191d03152ee5f (patch) | |
tree | 825022571cfb55d70f1ca3c142f79db3758fb72b /src/gui/theme.cpp | |
parent | a61ac4664d55cddb18d2d861e76629bd07676129 (diff) | |
download | plus-7e66a4606bb15d98197f71245fe191d03152ee5f.tar.gz plus-7e66a4606bb15d98197f71245fe191d03152ee5f.tar.bz2 plus-7e66a4606bb15d98197f71245fe191d03152ee5f.tar.xz plus-7e66a4606bb15d98197f71245fe191d03152ee5f.zip |
Improve some empty string checks.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 20ec774dc..f36a45579 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -983,7 +983,7 @@ static int readProgressType(const std::string &type) void Theme::loadColors(std::string file) { - if (file == "") + if (file.empty()) file = "colors.xml"; else file.append("/colors.xml"); |