summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2010-03-22 17:30:21 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-02-23 18:41:43 +0000
commit583314dbf3695334a86416326c3bc2f8f8393ac2 (patch)
tree030e291300374d4f52794b578ad91e4796124966 /main.cc
parenta610e1788ed44580bc0859dd3d96b693a7cfc293 (diff)
Fehler -> Error
Translate 'Fehler' to 'Error' Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.cc b/main.cc
index 9b99698..eddf4ed 100644
--- a/main.cc
+++ b/main.cc
@@ -69,7 +69,7 @@ class CMyWizard : public CWizard
config.Load(filename);
} catch (std::runtime_error &e)
{
- printf("Fehler: %s\n", e.what());
+ printf("Error: %s\n", e.what());
}
}
@@ -351,10 +351,10 @@ class CMyWizard : public CWizard
if (GetSaveFileName(&ofn))
{
try {
- config.Save(ofn.lpstrFile);
+ config.Save(ofn.lpstrFile);
} catch (std::runtime_error &e)
{
- printf("Fehler: %s\n", e.what());
+ printf("Error: %s\n", e.what());
}
}
}
@@ -690,7 +690,7 @@ int main(int argc, char **argv)
return 0;
} catch (std::runtime_error &e)
{
- printf("Fehler: %s\n", e.what());
+ printf("Error: %s\n", e.what());
return -1;
}
}