author | insilmaril |
Wed May 31 12:27:41 2006 +0000 (2006-05-31) | |
changeset 338 | e886fd2fb37d |
parent 0 | 7a96bd401351 |
permissions | -rw-r--r-- |
1 void ShowTextDialog::init()
2 {
3 textEdit1->setReadOnly (true);
4 }
6 void ShowTextDialog::setCaption (const QString &t)
7 {
8 QDialog::setCaption ("VYM - " + tr ("History of %1").arg(t));
9 }
11 void ShowTextDialog::setText(const QString &t)
12 {
13 textEdit1->setText (t);
14 }
16 void ShowTextDialog::append( const QString &t )
17 {
18 textEdit1->append (t);
19 }