showtextdialog.cpp
author insilmaril
Mon Nov 16 09:47:10 2009 +0000 (2009-11-16)
changeset 805 fc7a93ff97c3
permissions -rw-r--r--
Deactivated progressbar to speedup loading of maps
     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