changeset 103 | c810a11d11d9 |
child 293 | 68495946fe33 |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/showtextdialog.ui.h Mon May 23 15:28:20 2005 +0000 1.3 @@ -0,0 +1,18 @@ 1.4 +void ShowTextDialog::init() 1.5 +{ 1.6 + textEdit1->setReadOnly (true); 1.7 +} 1.8 + 1.9 + 1.10 +void ShowTextDialog::setText(const QString &t) 1.11 +{ 1.12 + textEdit1->setText (t); 1.13 +} 1.14 + 1.15 + 1.16 + 1.17 + 1.18 +void ShowTextDialog::append( const QString &t ) 1.19 +{ 1.20 + textEdit1->append (t); 1.21 +}