showtextdialog.ui.h
author insilmaril
Tue Mar 23 11:54:30 2010 +0000 (2010-03-23)
branchrelease-1-12-maintained
changeset 81 876eed30ba3b
child 293 68495946fe33
permissions -rw-r--r--
Patch from Xavier Oswald to compile with older compilers
     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 }