diff -r 000000000000 -r 7aa2e46c00f1 showtextdialog.ui.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.ui.h Fri Jul 08 07:24:43 2005 +0000 @@ -0,0 +1,18 @@ +void ShowTextDialog::init() +{ + textEdit1->setReadOnly (true); +} + + +void ShowTextDialog::setText(const QString &t) +{ + textEdit1->setText (t); +} + + + + +void ShowTextDialog::append( const QString &t ) +{ + textEdit1->append (t); +}