diff -r 000000000000 -r 25a950c2eb98 showtextdialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.cpp Tue Mar 09 08:29:09 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); +} + +