From 70c1510c60951d46578eb0f0ad996b608ee524a8 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Tue, 10 Mar 2009 12:27:41 +0000 Subject: [PATCH] small change --- src/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8f379372..6a8af240 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -42,7 +42,7 @@ int main ( int argc, char** argv ) std::string strArgument; double rDbleArgument; - /* check if server or client application shall be started */ + // check if server or client application shall be started bool bIsClient = true; bool bUseGUI = true; int iUploadRateLimitKbps = DEF_MAX_UPLOAD_RATE_KBPS; @@ -52,9 +52,9 @@ int main ( int argc, char** argv ) std::string strServerName = ""; std::string strLoggingFileName = ""; - /* QT docu: argv()[0] is the program name, argv()[1] is the first - argument and argv()[argc()-1] is the last argument. - Start with first argument, therefore "i = 1" */ + // QT docu: argv()[0] is the program name, argv()[1] is the first + // argument and argv()[argc()-1] is the last argument. + // Start with first argument, therefore "i = 1" for ( int i = 1; i < argc; i++ ) { // server mode flag ----------------------------------------------------------