summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/logwindow.cpp2
-rw-r--r--noncore/net/wellenreiter/gui/wellenreiterbase.h2
2 files changed, 3 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
@@ -31,25 +31,25 @@ MLogWindow::MLogWindow( QWidget * parent, const char * name, WFlags f )
31 ledit = new QMultiLineEdit( this ); 31 ledit = new QMultiLineEdit( this );
32 ledit->setReadOnly( true ); 32 ledit->setReadOnly( true );
33 ledit->setUndoEnabled( false ); 33 ledit->setUndoEnabled( false );
34 34
35 35
36 MLogWindow::_instance = this; 36 MLogWindow::_instance = this;
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()
50{ 50{
51 ledit->clear(); 51 ledit->clear();
52} 52}
53 53
54 54
55const QString MLogWindow::getLog() const 55const QString MLogWindow::getLog() const
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.h b/noncore/net/wellenreiter/gui/wellenreiterbase.h
index e40b699..c39be48 100644
--- a/noncore/net/wellenreiter/gui/wellenreiterbase.h
+++ b/noncore/net/wellenreiter/gui/wellenreiterbase.h
@@ -62,16 +62,18 @@ public:
62 62
63protected: 63protected:
64 QVBoxLayout* WellenreiterBaseLayout; 64 QVBoxLayout* WellenreiterBaseLayout;
65 QVBoxLayout* apLayout; 65 QVBoxLayout* apLayout;
66 QGridLayout* aboutLayout; 66 QGridLayout* aboutLayout;
67 bool event( QEvent* ); 67 bool event( QEvent* );
68 68
69 QPixmap* ani1; 69 QPixmap* ani1;
70 QPixmap* ani2; 70 QPixmap* ani2;
71 QPixmap* ani3; 71 QPixmap* ani3;
72 QPixmap* ani4; 72 QPixmap* ani4;
73 73
74private slots:
75 virtual void slotTabChanged( QWidget* ) = 0;
74 76
75}; 77};
76 78
77#endif // WELLENREITERBASE_H 79#endif // WELLENREITERBASE_H