Work on wxUI and UsersDialog

This commit is contained in:
2011-09-04 11:21:30 +02:00
parent e6ff989bfa
commit f6e0f92ad7
7 changed files with 224 additions and 49 deletions

View File

@@ -21,14 +21,11 @@
#include <controller/KissCount.hpp>
int main(int argc, const char *argv[])
int main(int argc, char *argv[])
{
try
{
if (argc == 2)
return KissCount(argv[1]).exec();
else
return KissCount(0).exec();
return KissCount(argc, argv).exec();
}
catch (std::string s)
{