showtextdialog.ui.h
author insilmaril
Tue, 05 Sep 2006 11:53:54 +0000
changeset 370 97f5d07bf47d
parent 293 68495946fe33
permissions -rw-r--r--
fixed default shortcut in findwindow
     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 }