author | insilmaril |
Fri Jun 16 08:27:11 2006 +0000 (2006-06-16) | |
changeset 351 | ffe2a4396694 |
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 }