Changeset c15be10 in confclerk_git for src/gui/mainwindow.cpp
- Timestamp:
- 01/26/10 13:51:56 (13 years ago)
- Branches:
- master, qt5
- Children:
- 830f102
- Parents:
- 01df23f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/mainwindow.cpp
r01df23f rc15be10 19 19 #include "eventdialog.h" 20 20 #include "daynavigatorwidget.h" 21 #include "importschedule dialog.h"21 #include "importschedulewidget.h" 22 22 #include "mapwindow.h" 23 23 … … 31 31 mSqlEngine = new SqlEngine(this); 32 32 mSqlEngine->initialize(); 33 importScheduleWidget->setSqlEngine(mSqlEngine); 33 34 34 35 // Sanity check for existence of any Conference in the DB … … 46 47 } 47 48 49 connect(importScheduleWidget, SIGNAL(scheduleImported(int)), SLOT(scheduleImported(int))); 50 48 51 // connect Menu actions 49 connect(actionImportSchedule, SIGNAL(triggered()), SLOT(importSchedule()));50 52 connect(actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt())); 51 53 connect(actionAboutApplication, SIGNAL(triggered()), SLOT(aboutApp())); … … 200 202 } 201 203 202 void MainWindow::importSchedule() 203 { 204 ImportScheduleDialog dialog(mSqlEngine,this); 205 dialog.exec(); 204 void MainWindow::scheduleImported(int aConfId) 205 { 206 Q_UNUSED(aConfId); 206 207 207 208 QList<Conference> confs = Conference::getAll();
Note: See TracChangeset
for help on using the changeset viewer.