changeset 59:4557da8bdee6

* minor updates
author Chris Cannam
date Tue, 16 Nov 2010 15:14:17 +0000
parents 8af90d057609
children 73073f34a5ee
files common.h hgrunner.cpp
diffstat 2 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/common.h	Tue Nov 16 14:32:51 2010 +0000
+++ b/common.h	Tue Nov 16 15:14:17 2010 +0000
@@ -20,8 +20,8 @@
 
 #include <QString>
 
-#define APPNAME                         "HgExplorer"
-#define APPVERSION                      "0.7.2"
+#define APPNAME                         "EasyMercurial"
+#define APPVERSION                      "0.8"
 #define MY_ICON_SIZE                    32
 #define REPOMENU_TITLE                  "Repository actions"
 #define WORKFOLDERMENU_TITLE            "Workfolder actions"
--- a/hgrunner.cpp	Tue Nov 16 14:32:51 2010 +0000
+++ b/hgrunner.cpp	Tue Nov 16 15:14:17 2010 +0000
@@ -65,8 +65,7 @@
     stdOut = QString::fromUtf8(proc -> readAllStandardOutput());
     stdErr = QString::fromUtf8(proc -> readAllStandardError());
 
-    DEBUG << "setProcExitInfo: received " << stdOut.split("\n").size() << " lines of stdout";
-    DEBUG << "setProcExitInfo: received " << stdErr.split("\n").size() << " lines of stderr";
+    DEBUG << "setProcExitInfo: " << stdOut.split("\n").size() << " line(s) of stdout, " << stdErr.split("\n").size() << " line(s) of stderr";
 
 //    std::cerr << "stdout was " << stdOut.toStdString() << std::endl;
 }