-rw-r--r-- | microkde/kapplication.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/microkde/kapplication.cpp b/microkde/kapplication.cpp index 566bb41..2c9e3b6 100644 --- a/microkde/kapplication.cpp +++ b/microkde/kapplication.cpp @@ -172,3 +172,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) int ret = 3; - qDebug("KApplication::createBackup %s --- %s --- %d", fn.latin1(), dp.latin1(), numBup); + //qDebug("KApplication::createBackup %s --- %s --- %d", fn.latin1(), dp.latin1(), numBup); QDir bupDir ( dp ); @@ -202,3 +202,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) } - qDebug("%d backup files exist ", fileList.count()); + qDebug("KApp: %d backup files exist ", fileList.count()); int count = fileList.count(); @@ -217,3 +217,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) file += fName ; - file = dp + "/"+file; + file = dp + file; QString command; @@ -221,4 +221,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) #ifdef _WIN32_ - command = "xcopy "+ fn+ " "+file; - command = QDir::convertSeparators( command ); + command = "copy \""+ QDir::convertSeparators( fn)+ "\" \""+QDir::convertSeparators(file)+ "\" "; #else @@ -226,3 +225,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) #endif - qDebug("command %s ",command.latin1() ); + //qDebug("command %s ",command.latin1() ); tryAgain = true; @@ -230,3 +229,3 @@ int KApplication::createBackup( QString fn, QString dp, int numBup ) res = system ( command.latin1() ); - qDebug("copy result %d ", res); + qDebug("KApp: Copy result %d ", res); if ( res != 0 ) { |