diff options
author | deva <deva> | 2009-07-30 08:36:12 +0000 |
---|---|---|
committer | deva <deva> | 2009-07-30 08:36:12 +0000 |
commit | 77272458e7a8906d871b241b5385bbd0f783d861 (patch) | |
tree | 7e32f988654c042be251c4ba31b72902402059f3 /client/mainwindow.h | |
parent | 1f8c58836dfd8dc8c9a0abeeaef6789325189f1b (diff) |
Removed the term 'course' everywhere, and replaced it by 'template'. This reduced/simplified the Template class structure a bit.
Diffstat (limited to 'client/mainwindow.h')
-rw-r--r-- | client/mainwindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/mainwindow.h b/client/mainwindow.h index d60db9d..e19b070 100644 --- a/client/mainwindow.h +++ b/client/mainwindow.h @@ -39,7 +39,7 @@ class MainWindow : public QMainWindow { Q_OBJECT public: - MainWindow(QString cpr, QString course, QString host, quint16 port, QString user); + MainWindow(QString cpr, QString templ, QString host, quint16 port, QString user); ~MainWindow(); void closeEvent(QCloseEvent *event); @@ -48,9 +48,9 @@ public slots: void update(); private: - void updateCourseHeaders(QDomNode coursenode); + void updateTemplateHeaders(QDomNode templatenode); - QString course; + QString templ; NetCom netcom; // QMap< QString, MacroWindow* > macros; |