- Timestamp:
- 04/16/10 14:14:19 (13 years ago)
- Branches:
- master, qt5
- Children:
- a61c5f5
- Parents:
- 2eda137
- Location:
- src/gui
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/gui.pro
r2eda137 r3329d39 82 82 settingsdialog.cpp 83 83 84 HEADERS += errormessage.h 85 SOURCES += errormessage.cpp 86 CONFIG(maemo5) { 87 QT += maemo5 88 } 89 84 90 #maemo { 85 91 # FORMS += alarmdialog.ui -
src/gui/importschedulewidget.cpp
r2eda137 r3329d39 35 35 36 36 #include "conference.h" 37 #include "errormessage.h" 37 38 38 39 // const QString SCHEDULE_URL = "http://fosdem.org/2010/schedule/xml"; … … 114 115 if ( aReply->error() != QNetworkReply::NoError ) 115 116 { 116 qDebug() << "Error occured during download: " << aReply->errorString();117 error_message(QString("Error occured during download: ") + aReply->errorString()); 117 118 } 118 119 else … … 209 210 importScheduleLabel->setText("Schedule:"); 210 211 211 emit(scheduleImported(confId)); 212 } 213 212 if (confId > 0) { 213 emit(scheduleImported(confId)); 214 } 215 } 216
Note: See TracChangeset
for help on using the changeset viewer.