diff -r 000000000000 -r 43268373032d showtextdialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.cpp Wed Jun 09 13:14:08 2010 +0000 @@ -0,0 +1,19 @@ +#include "showtextdialog.h" + + +ShowTextDialog::ShowTextDialog (QWidget *parent):QDialog (parent) +{ + ui.setupUi (this); +} + +void ShowTextDialog::append (const QString &s) +{ + ui.textEdit->append (s); +} + +void ShowTextDialog::setText (const QString &s) +{ + ui.textEdit->setText (s); +} + +