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
@@ -27,32 +27,32 @@ MLogWindow* MLogWindow::_instance;
27 27
28MLogWindow::MLogWindow( QWidget * parent, const char * name, WFlags f ) 28MLogWindow::MLogWindow( QWidget * parent, const char * name, WFlags f )
29 :QVBox( parent, name, f ) 29 :QVBox( parent, name, f )
30{ 30{
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
56{ 56{
57 return ledit->text(); 57 return ledit->text();
58} 58}
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
@@ -58,20 +58,22 @@ public:
58 MGraphWindow* graphwindow; 58 MGraphWindow* graphwindow;
59 QWidget* about; 59 QWidget* about;
60 QLabel* PixmapLabel1_3_2; 60 QLabel* PixmapLabel1_3_2;
61 QLabel* TextLabel1_4_2; 61 QLabel* TextLabel1_4_2;
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