- Timestamp:
- 06/28/11 23:31:33 (12 years ago)
- Branches:
- master, qt5
- Children:
- bdeb1ff
- Parents:
- 0145b04
- Location:
- src/gui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/conferenceeditor.cpp
r0145b04 rcf385cd 199 199 void ConferenceEditor::importFinished(const QString& title) 200 200 { 201 qDebug() << __PRETTY_FUNCTION__ << title;202 201 addBtn->show(); 203 202 // removeItem should be shown later, but it takes some time, -
src/gui/daynavigatorwidget.cpp
r0145b04 rcf385cd 43 43 Q_ASSERT(aStartDate<=aEndDate); 44 44 45 //qDebug() << "DayNavigatorWidget::setDates(): " << aStartDate << ", " << aEndDate;46 45 mStartDate = aStartDate; 47 46 mEndDate = aEndDate; … … 67 66 void DayNavigatorWidget::prevDayButtonClicked() 68 67 { 69 //qDebug() << mStartDate << ":" << mCurDate << ":" << mEndDate;70 68 if(mCurDate>mStartDate) 71 69 { … … 89 87 void DayNavigatorWidget::nextDayButtonClicked() 90 88 { 91 //qDebug() << mStartDate << ":" << mCurDate << ":" << mEndDate;92 89 if(mCurDate<mEndDate) 93 90 { -
src/gui/eventdialog.cpp
r0145b04 rcf385cd 87 87 } 88 88 89 qDebug() << " FAVOURITE [" << event.id() << "] -> " << event.isFavourite();90 91 89 // have to emit 'eventHasChanged' signal on all events in conflict 92 90 for(int i=0; i<conflicts.count(); i++) … … 121 119 Alarm alarm; 122 120 int cookie = alarm.addAlarm(event.id(),QDateTime::currentDateTime().addSecs(10)); 123 qDebug() << "cookie: " << cookie;124 121 #endif /* MAEMO */ 125 122 } 126 123 event.update("alarm"); 127 qDebug() << " ALARM [" << event.id() << "] -> " << event.hasAlarm();128 124 // since the Alarm icon has changed, update TreeView accordingly 129 125 // all TreeViews have to listen on this signal -
src/gui/mainwindow.cpp
r0145b04 rcf385cd 70 70 AppSettings::setDirectConnection(true); 71 71 72 /* 72 73 if(AppSettings::isDirectConnection()) 73 74 { 74 75 qDebug() << "Setting-up proxy: " << AppSettings::proxyAddress() << ":" << AppSettings::proxyPort(); 75 76 } 77 */ 76 78 QNetworkProxy proxy( 77 79 AppSettings::isDirectConnection() ? QNetworkProxy::NoProxy : QNetworkProxy::HttpProxy, … … 222 224 dialog.exec(); 223 225 224 qDebug() << "Setting-up proxy: " << AppSettings::proxyAddress() << ":" << AppSettings::proxyPort();225 226 QNetworkProxy proxy( 226 227 AppSettings::isDirectConnection() ? QNetworkProxy::NoProxy : QNetworkProxy::HttpProxy, … … 279 280 else 280 281 { 281 qDebug() << __PRETTY_FUNCTION__ << ": have data";282 282 importData(aReply->readAll(), aReply->url().toEncoded()); 283 283 } … … 291 291 void MainWindow::importFromNetwork(const QString& url) 292 292 { 293 qDebug() << __PRETTY_FUNCTION__;294 293 QNetworkRequest request; 295 294 request.setUrl(QUrl(url)); … … 301 300 void MainWindow::importFromFile(const QString& filename) 302 301 { 303 qDebug() << __PRETTY_FUNCTION__;304 302 QFile file(filename); 305 303 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { -
src/gui/searchhead.cpp
r0145b04 rcf385cd 41 41 void SearchHead::searchButtonClicked() 42 42 { 43 // qDebug() << "SearchHead::searchButtonClicked()";44 43 emit( searchClicked() ); 45 44 }
Note: See TracChangeset
for help on using the changeset viewer.