summaryrefslogtreecommitdiff
path: root/src/dirs.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-16 22:35:17 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-16 22:35:17 +0300
commitb3d17866a3c5700b52c2b0b954fce132a52c1dbf (patch)
tree7ba07c98a1842eb766de35e172f559dcf5ac6fb4 /src/dirs.cpp
parent5e8e53f6e795a84ab5ca6cfe0d08672878044707 (diff)
downloadplus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.gz
plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.bz2
plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.tar.xz
plus-b3d17866a3c5700b52c2b0b954fce132a52c1dbf.zip
Convert State enum into strong typed.
Diffstat (limited to 'src/dirs.cpp')
-rw-r--r--src/dirs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dirs.cpp b/src/dirs.cpp
index 4e9c5fbd9..051c00c40 100644
--- a/src/dirs.cpp
+++ b/src/dirs.cpp
@@ -462,7 +462,7 @@ void Dirs::initUpdatesDir()
// TRANSLATORS: update server initialisation error
errorMessage = strprintf(_("Invalid update host: %s."),
settings.updateHost.c_str());
- client->setState(STATE_ERROR);
+ client->setState(State::ERROR);
}
}
else
@@ -502,14 +502,14 @@ void Dirs::initUpdatesDir()
newDir.c_str());
// TRANSLATORS: update server initialisation error
errorMessage = _("Error creating updates directory!");
- client->setState(STATE_ERROR);
+ client->setState(State::ERROR);
}
#else
logger->log("Error: %s/%s can't be made, but doesn't exist!",
settings.localDataDir.c_str(), settings.updatesDir.c_str());
// TRANSLATORS: update server initialisation error
errorMessage = _("Error creating updates directory!");
- client->setState(STATE_ERROR);
+ client->setState(State::ERROR);
#endif
}
}