summaryrefslogtreecommitdiffstats
path: root/src/crsm.cpp
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2015-10-10 20:22:06 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2015-10-10 20:22:06 +0200
commitd62e19be818c7fab952bad861d7e8a98ce346d2f (patch)
tree848c64c90b3d7219ac74c963db28cde149c5db48 /src/crsm.cpp
parentb5e22002ef491cdbae8ab04e96200f101ca6312b (diff)
downloadmanager-d62e19be818c7fab952bad861d7e8a98ce346d2f.tar.gz
manager-d62e19be818c7fab952bad861d7e8a98ce346d2f.zip
Remove CRSM-prefix from Config(Base)-Classes
Diffstat (limited to 'src/crsm.cpp')
-rw-r--r--src/crsm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp
index f85ca52..614a085 100644
--- a/src/crsm.cpp
+++ b/src/crsm.cpp
@@ -2225,7 +2225,7 @@ CMD_FUNCTION_IMPL(getConfigValue)
{
respond(client, Config.getConfigValueLine(args));
}
- catch(CRSMConfigException)
+ catch(ConfigException)
{
respond(client, "Es existiert kein Wert mit dem Namen \"" + args + "\"\n");
}
@@ -2238,7 +2238,7 @@ CMD_FUNCTION_IMPL(setConfigValue)
applyConfig();
respond(client, "Wert wurde erfolgreich übernommen.\n");
}
- catch(CRSMConfigException e)
+ catch(ConfigException e)
{
respond(client, QString("Fehler beim Setzen: ") + e.what() + "\n");
}