showtextdialog.cpp
author insilmaril
Mon Nov 20 12:12:02 2006 +0000 (2006-11-20)
changeset 404 53efc2562a7d
permissions -rw-r--r--
historywindow moved to mainwindow. Started to get rid of Q3PtrList finally
     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