summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas2011-10-25 18:59:12 +0200
committerNiklas2011-10-25 18:59:12 +0200
commit1c2ae111e627e7117d2275393a0b66d6024d986a (patch)
treed39410ee2886a77f81aa1bf06b235f4055cfcdb6
parentfixed some bugs. show log screen is now bigger and opens a scrollbar automati... (diff)
downloadfbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.tar.gz
fbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.tar.xz
fbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.zip
the log message has now a newline
-rw-r--r--src/networkdiscovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networkdiscovery.cpp b/src/networkdiscovery.cpp
index 716e28b..13242c2 100644
--- a/src/networkdiscovery.cpp
+++ b/src/networkdiscovery.cpp
@@ -247,7 +247,7 @@ QString NetworkDiscovery::getGatewayForInterface(QString ifName) {
*/
QString NetworkDiscovery::readLogFile() {
// path to log file is in _pathToLogFile. initialized in initAndRun().
- QString retval("the log file");
+ QString retval("the log file\n");
QFile logFile(_pathToLogFile);
if (logFile.exists()) {
if (logFile.open(QIODevice::ReadOnly | QIODevice::Text)) {