summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
commit47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b (patch)
treeb991daf52ca2051d2e3f89f8143b843bf1318449 /apps
parent8c30e4f664bb8b68f965165035ec29115486b065 (diff)
downloaduscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.zip
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.gz
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.bz2
Beautified source code again
Diffstat (limited to 'apps')
-rw-r--r--apps/mmi-browser.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/mmi-browser.cpp b/apps/mmi-browser.cpp
index 7cdd392..4090135 100644
--- a/apps/mmi-browser.cpp
+++ b/apps/mmi-browser.cpp
@@ -28,7 +28,7 @@ int main(int argc, char** argv) {
}
#ifndef _WIN32
- opterr = 0;
+ opterr = 0;
#endif
int option;
while ((option = getopt(argc, argv, "l:p:")) != -1) {
@@ -39,8 +39,8 @@ int main(int argc, char** argv) {
case 'p':
uscxml::Factory::pluginPath = optarg;
break;
- case '?':
- break;
+ case '?':
+ break;
default:
printUsageAndExit();
break;
@@ -50,14 +50,14 @@ int main(int argc, char** argv) {
// for (int i = 0; i < argc; i++)
// std::cout << argv[i] << std::endl;
// std::cout << optind << std::endl;
-
+
Interpreter* interpreter = Interpreter::fromURI(argv[optind]);
if (interpreter) {
- interpreter->setCmdLineOptions(argc, argv);
+ interpreter->setCmdLineOptions(argc, argv);
interpreter->start();
while(interpreter->runOnMainThread(25));
- delete interpreter;
+ delete interpreter;
}
return EXIT_SUCCESS;