showtextdialog.ui.h
author insilmaril
Mon, 23 May 2005 15:28:20 +0000
changeset 103 c810a11d11d9
parent 0 7a96bd401351
child 293 68495946fe33
permissions -rw-r--r--
1.6.6 Exclusive flags added
     1 void ShowTextDialog::init()
     2 {
     3 	textEdit1->setReadOnly (true);
     4 }
     5 
     6 
     7 void ShowTextDialog::setText(const QString &t)
     8 {
     9 	textEdit1->setText (t);
    10 }
    11 
    12 
    13 
    14 
    15 void ShowTextDialog::append( const QString &t )
    16 {
    17 	textEdit1->append (t);
    18 }