showtextdialog.cpp
changeset 379 a62478df8d46
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/showtextdialog.cpp	Wed Sep 06 12:47:06 2006 +0000
     1.3 @@ -0,0 +1,19 @@
     1.4 +#include "showtextdialog.h"
     1.5 +
     1.6 +
     1.7 +ShowTextDialog::ShowTextDialog (QWidget *parent):QDialog (parent)
     1.8 +{
     1.9 +	ui.setupUi (this);
    1.10 +}
    1.11 +
    1.12 +void ShowTextDialog::append  (const QString &s)
    1.13 +{
    1.14 +	ui.textEdit->append (s);
    1.15 +}
    1.16 +
    1.17 +void ShowTextDialog::setText (const QString &s)
    1.18 +{
    1.19 +	ui.textEdit->setText (s);
    1.20 +}
    1.21 +
    1.22 +