diff -r 000000000000 -r 2cf3413b6ac9 showtextdialog.ui.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.ui.h Tue Sep 06 15:04:50 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); +}