diff -r 000000000000 -r 0f2271678dea showtextdialog.ui.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.ui.h Sun Jan 30 23:25:48 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); +}