diff -r 1ab7353f8f44 -r a62478df8d46 showtextdialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.cpp Wed Sep 06 12:47:06 2006 +0000 @@ -0,0 +1,19 @@ +#include "showtextdialog.h" + + +ShowTextDialog::ShowTextDialog (QWidget *parent):QDialog (parent) +{ + ui.setupUi (this); +} + +void ShowTextDialog::append (const QString &s) +{ + ui.textEdit->append (s); +} + +void ShowTextDialog::setText (const QString &s) +{ + ui.textEdit->setText (s); +} + +