diff -r 000000000000 -r 7a96bd401351 showtextdialog.ui.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.ui.h Sun Jan 30 12:58:47 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); +}