author | zecke <zecke> | 2004-08-24 13:09:19 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-08-24 13:09:19 (UTC) |
commit | 102bb2b65c71da12c4f9f1ce7a5d1b37b6eb50ee (patch) (side-by-side diff) | |
tree | 7fc5bdf7ec22b8383c5cafc46f733a1db7cdd326 | |
parent | b06390cb17114692a9fd5233d77620b385252480 (diff) | |
download | opie-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
-rw-r--r-- | noncore/net/wellenreiter/gui/logwindow.cpp | 2 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiterbase.h | 2 |
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 @@ -19,40 +19,40 @@ #include <opie2/odebug.h> using namespace Opie::Core; /* QT */ #include <qmultilineedit.h> #include <qdatetime.h> MLogWindow* MLogWindow::_instance; MLogWindow::MLogWindow( QWidget * parent, const char * name, WFlags f ) :QVBox( parent, name, 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 { return ledit->text(); } 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 @@ -50,28 +50,30 @@ public: #else QTabWidget* TabWidget; #endif QWidget* ap; MScanListView* netview; MLogWindow* logwindow; PacketView* hexwindow; MStatWindow* statwindow; MGraphWindow* graphwindow; QWidget* about; QLabel* PixmapLabel1_3_2; QLabel* TextLabel1_4_2; 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 |