diff options
| -rw-r--r-- | src/crsm.cpp | 4 | ||||
| m--------- | src/qt-config | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp index 2c50fdc..1ba1d0e 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -3284,7 +3284,7 @@ CMD_FUNCTION_IMPL(getConfigValue) { respond(client, Config.getConfigValueLine(args)); } - catch(ConfigException) + catch(const ConfigException&) { respond(client, "Es existiert kein Wert mit dem Namen \"" + args + "\"\n"); } @@ -3298,7 +3298,7 @@ CMD_FUNCTION_IMPL(setConfigValue) applyConfig(); respond(client, "Wert wurde erfolgreich übernommen.\n"); } - catch(ConfigException e) + catch(const ConfigException& e) { respond(client, QString("Fehler beim Setzen: ") + e.what() + "\n"); } diff --git a/src/qt-config b/src/qt-config -Subproject 9e411a03acc60aaff7244f26cc32597fd6452df +Subproject 20b714ed29e5b0350c7fff6d59792c1f58cfb36 |
