summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/logwindow.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/logwindow.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/logwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/gui/logwindow.cpp b/noncore/net/wellenreiter/gui/logwindow.cpp
index a83f700..5f97f8e 100644
--- a/noncore/net/wellenreiter/gui/logwindow.cpp
+++ b/noncore/net/wellenreiter/gui/logwindow.cpp
@@ -37,13 +37,13 @@ MLogWindow::MLogWindow( QWidget * parent, const char * name, WFlags f )
37} 37}
38 38
39 39
40void MLogWindow::log( QString text ) 40void MLogWindow::log( QString text )
41{ 41{
42 QTime time = QTime::currentTime(); 42 QTime time = QTime::currentTime();
43 QString line = QString( "[%1] %2\n" ).arg(time.toString() ).arg( text ); 43 QString line = QString( "[%1] %2" ).arg(time.toString() ).arg( text );
44 ledit->insertLine( line ); 44 ledit->insertLine( line );
45 odebug << line << oendl; 45 odebug << line << oendl;
46} 46}
47 47
48 48
49void MLogWindow::clear() 49void MLogWindow::clear()