showtextdialog.ui.h
author insilmaril
Mon, 15 May 2006 07:32:10 +0000
changeset 325 58eadc221caf
parent 293 68495946fe33
permissions -rw-r--r--
1.7.17
     1 void ShowTextDialog::init()
     2 {
     3 	textEdit1->setReadOnly (true);
     4 }
     5 
     6 void ShowTextDialog::setCaption (const QString &t)
     7 {
     8 	QDialog::setCaption ("VYM - " + tr ("History of %1").arg(t));
     9 }
    10 
    11 void ShowTextDialog::setText(const QString &t)
    12 {
    13 	textEdit1->setText (t);
    14 }
    15 
    16 void ShowTextDialog::append( const QString &t )
    17 {
    18 	textEdit1->append (t);
    19 }