showtextdialog.ui.h
branchvendor
changeset 0 7a96bd401351
child 293 68495946fe33
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/showtextdialog.ui.h	Sun Jan 30 12:58:47 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 +}