showtextdialog.cpp
author insilmaril
Thu, 18 Mar 2010 11:46:52 +0000
changeset 839 fbb927bbdda3
parent 379 a62478df8d46
permissions -rw-r--r--
Version bump to 1.13.1 due to first release of 1.13.0 to openSUSE buildservice
     1 #include "showtextdialog.h"
     2 
     3 
     4 ShowTextDialog::ShowTextDialog (QWidget *parent):QDialog (parent)
     5 {
     6 	ui.setupUi (this);
     7 }
     8 
     9 void ShowTextDialog::append  (const QString &s)
    10 {
    11 	ui.textEdit->append (s);
    12 }
    13 
    14 void ShowTextDialog::setText (const QString &s)
    15 {
    16 	ui.textEdit->setText (s);
    17 }
    18 
    19