# HG changeset patch # User insilmaril # Date 1158233897 0 # Node ID 63e28dfd877df7c7c64ccd599c2864d37fbc6a9c # Parent 73bfe41502d912ce80a0bacc4f10993819bc4fa9 1.8.57 - more changes in history window, Note Editor is QT4 now diff -r 73bfe41502d9 -r 63e28dfd877d extrainfodialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extrainfodialog.cpp Thu Sep 14 11:38:17 2006 +0000 @@ -0,0 +1,39 @@ +#include "extrainfodialog.h" + + +ExtraInfoDialog::ExtraInfoDialog(QWidget *parent):QDialog (parent) +{ + ui.setupUi (this); +} + + +void ExtraInfoDialog::setMapName(const QString &s) +{ + ui.mapNameLE->setText (s); +} + +void ExtraInfoDialog::setComment (const QString &s) +{ + ui.commentTE->setText (s); +} + +QString ExtraInfoDialog::getComment() +{ + return ui.commentTE->text(); +} + + +void ExtraInfoDialog::setAuthor(const QString &s) +{ + ui.authorLE->setText (s); +} + +QString ExtraInfoDialog::getAuthor() +{ + return ui.authorLE->text(); +} + +void ExtraInfoDialog::setStats(const QString &s) +{ + ui.statsTE->setText (s); +}