summaryrefslogtreecommitdiff
authorzecke <zecke>2004-08-24 13:09:19 (UTC)
committer zecke <zecke>2004-08-24 13:09:19 (UTC)
commit102bb2b65c71da12c4f9f1ce7a5d1b37b6eb50ee (patch) (side-by-side diff)
tree7fc5bdf7ec22b8383c5cafc46f733a1db7cdd326
parentb06390cb17114692a9fd5233d77620b385252480 (diff)
downloadopie-102bb2b65c71da12c4f9f1ce7a5d1b37b6eb50ee.zip
opie-102bb2b65c71da12c4f9f1ce7a5d1b37b6eb50ee.tar.gz
opie-102bb2b65c71da12c4f9f1ce7a5d1b37b6eb50ee.tar.bz2
Minor adjustment to the patch:
-insertLine already adds a \n -add a slotTabChanged slot in wellenreiterbase
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 )
ledit = new QMultiLineEdit( this );
ledit->setReadOnly( true );
ledit->setUndoEnabled( false );
MLogWindow::_instance = this;
}
void MLogWindow::log( QString text )
{
QTime time = QTime::currentTime();
- QString line = QString( "[%1] %2\n" ).arg(time.toString() ).arg( text );
+ QString line = QString( "[%1] %2" ).arg(time.toString() ).arg( text );
ledit->insertLine( line );
odebug << line << oendl;
}
void MLogWindow::clear()
{
ledit->clear();
}
const 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:
protected:
QVBoxLayout* WellenreiterBaseLayout;
QVBoxLayout* apLayout;
QGridLayout* aboutLayout;
bool event( QEvent* );
QPixmap* ani1;
QPixmap* ani2;
QPixmap* ani3;
QPixmap* ani4;
+private slots:
+ virtual void slotTabChanged( QWidget* ) = 0;
};
#endif // WELLENREITERBASE_H