-rw-r--r-- | core/pim/todo/mainwindow.cpp | 42 | ||||
-rw-r--r-- | core/pim/todo/otaskeditor.cpp | 1 | ||||
-rw-r--r-- | core/pim/todo/tableview.cpp | 20 | ||||
-rw-r--r-- | core/pim/todo/templatedialog.cpp | 4 | ||||
-rw-r--r-- | core/pim/todo/todoeditor.cpp | 2 | ||||
-rw-r--r-- | core/pim/todo/todomanager.cpp | 4 | ||||
-rw-r--r-- | core/pim/todo/todotemplatemanager.cpp | 3 | ||||
-rw-r--r-- | core/pim/todo/todoview.cpp | 4 |
8 files changed, 36 insertions, 44 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index d552928..924fde1 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp @@ -61,6 +61,6 @@ -using namespace Opie::Core; +using Opie::Core::OApplicationFactory; OPIE_EXPORT_APP( OApplicationFactory<Todo::MainWindow> ) - using namespace Opie; +using namespace Opie; using namespace Todo; @@ -298,3 +298,3 @@ QPopupMenu* MainWindow::contextMenu( int , bool recur ) { QPopupMenu* MainWindow::options() { - Opie::Core::owarn << "Options" << oendl; + owarn << "Options" << oendl; return m_options; @@ -317,3 +317,3 @@ OPimTodoAccess::List MainWindow::sorted( bool asc, int sortOrder ) { - Opie::Core::owarn << " Category " << cat << " " << m_curCat << oendl; + owarn << " Category " << cat << " " << m_curCat << oendl; @@ -376,3 +376,3 @@ void MainWindow::closeEvent( QCloseEvent* e ) { if ( m_todoMgr.saveAll() ){ - Opie::Core::owarn << "saved" << oendl; + owarn << "saved" << oendl; quit = true; @@ -539,3 +539,3 @@ void MainWindow::setCategory( int c) { - Opie::Core::owarn << "Iterating over cats " << c << oendl; + owarn << "Iterating over cats " << c << oendl; for ( unsigned int i = 1; i < m_catMenu->count(); i++ ) @@ -602,13 +602,13 @@ void MainWindow::receiveFile( const QString& filename ) { - QString message = QWidget::tr("<P>%1 new tasks arrived.<p>Would you like to add them to your Todolist?").arg(list.count() ); + QString message = QWidget::tr("<P>%1 new tasks arrived.<p>Would you like to add them to your Todolist?").arg(list.count() ); - if ( QMessageBox::information(this, QWidget::tr("New Tasks"), - message, QMessageBox::Ok, - QMessageBox::Cancel ) == QMessageBox::Ok ) { - OPimTodoAccess::List::Iterator it; - for ( it = list.begin(); it != list.end(); ++it ) - m_todoMgr.add( (*it) ); + if ( QMessageBox::information(this, QWidget::tr("New Tasks"), + message, QMessageBox::Ok, + QMessageBox::Cancel ) == QMessageBox::Ok ) { + OPimTodoAccess::List::Iterator it; + for ( it = list.begin(); it != list.end(); ++it ) + m_todoMgr.add( (*it) ); - currentView()->updateView(); - } + currentView()->updateView(); + } } @@ -683,3 +683,5 @@ void MainWindow::slotShow( int uid ) { if ( uid == 0 ) return; - Opie::Core::owarn << "slotShow" << oendl; + + + owarn << "slotShow" << oendl; currentShow()->slotShow( event( uid ) ); @@ -742,3 +744,3 @@ void MainWindow::setReadAhead( uint count ) { void MainWindow::slotQuickEntered() { - Opie::Core::owarn << "entered" << oendl; + owarn << "entered" << oendl; OPimTodo todo = quickEditor()->todo(); @@ -789,3 +791,3 @@ void MainWindow::slotComplete( const OPimTodo& todo ) { int dayDiff = to.dueDate().daysTo( date ); - Opie::Core::owarn << "day diff is " << dayDiff << oendl; + owarn << "day diff is " << dayDiff << oendl; QDate inval; @@ -952,3 +954,3 @@ namespace { for ( it = als.begin(); it != als.end(); ++it ) { - Opie::Core::owarn << "Adding alarm for " << (*it).dateTime().toString() << oendl; + owarn << "Adding alarm for " << (*it).dateTime().toString() << oendl; AlarmServer::addAlarm( (*it).dateTime(), "QPE/Application/todolist", "alarm(QDateTime,int)", uid ); @@ -960,3 +962,3 @@ namespace { for ( it = als.begin(); it != als.end(); ++it ) { - Opie::Core::owarn << "Removinf alarm for " << (*it).dateTime().toString() << oendl; + owarn << "Removinf alarm for " << (*it).dateTime().toString() << oendl; AlarmServer::deleteAlarm( (*it).dateTime(), "QPE/Application/todolist", "alarm(QDateTime,int)", uid ); diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp index 55a3dd5..bbc177d 100644 --- a/core/pim/todo/otaskeditor.cpp +++ b/core/pim/todo/otaskeditor.cpp @@ -37,3 +37,2 @@ void OTaskEditor::init( const OPimTodo& to ) { OPimTodo OTaskEditor::todo()const{ - Opie::Core::owarn << "saving!" << oendl; OPimTodo to ( m_todo ); diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp index 0b1c579..b7458d8 100644 --- a/core/pim/todo/tableview.cpp +++ b/core/pim/todo/tableview.cpp @@ -197,3 +197,3 @@ void TableView::showOverDue( bool ) { void TableView::updateView( ) { - Opie::Core::owarn << "update view" << oendl; + owarn << "update view" << oendl; m_row = false; @@ -211,3 +211,3 @@ void TableView::updateView( ) { - Opie::Core::owarn << "setTodos" << oendl; + owarn << "setTodos" << oendl; QTime time; @@ -257,3 +257,3 @@ void TableView::removeEvent( int ) { void TableView::setShowCompleted( bool b) { - Opie::Core::owarn << "Show Completed " << b << oendl; + owarn << "Show Completed " << b << oendl; updateView(); @@ -261,3 +261,3 @@ void TableView::setShowCompleted( bool b) { void TableView::setShowDeadline( bool b ) { - Opie::Core::owarn << "Show Deadline " << b << oendl; + owarn << "Show Deadline " << b << oendl; if ( b ) @@ -284,3 +284,3 @@ void TableView::setShowDeadline( bool b ) { void TableView::setShowCategory( const QString& str) { - Opie::Core::owarn << "setShowCategory" << oendl; + owarn << "setShowCategory" << oendl; if ( str != m_oleCat || m_first ) @@ -349,3 +349,3 @@ void TableView::slotPressed(int row, int col, int, - Opie::Core::owarn << "pressed row " << row << " col " << col << " x:" << point.x() + owarn << "pressed row " << row << " col " << col << " x:" << point.x() << "+y:" << point.y() << oendl; @@ -357,3 +357,3 @@ void TableView::slotPressed(int row, int col, int, void TableView::slotValueChanged( int, int ) { - Opie::Core::owarn << "Value Changed" << oendl; + owarn << "Value Changed" << oendl; } @@ -373,3 +373,3 @@ QWidget* TableView::widget() { void TableView::sortColumn( int col, bool asc, bool ) { - Opie::Core::owarn << "bool " << asc << oendl; + owarn << "bool " << asc << oendl; setSortOrder( col ); @@ -496,3 +496,3 @@ QWidget* TableView::createEditor(int row, int col, bool )const { void TableView::setCellContentFromEditor(int row, int col ) { - Opie::Core::owarn << "set cell content from editor" << oendl; + owarn << "set cell content from editor" << oendl; if ( col == 1 ) { @@ -580,3 +580,3 @@ void TableView::contentsMouseReleaseEvent( QMouseEvent* e) { int colNew = columnAt(e->x() ); - Opie::Core::owarn << "colNew: " << colNew << " colOld: " << colOld << oendl; + owarn << "colNew: " << colNew << " colOld: " << colOld << oendl; if ( row == rowAt( e->y() ) && row != -1 && diff --git a/core/pim/todo/templatedialog.cpp b/core/pim/todo/templatedialog.cpp index 32327a6..8d72297 100644 --- a/core/pim/todo/templatedialog.cpp +++ b/core/pim/todo/templatedialog.cpp @@ -53,12 +53,8 @@ QLineEdit* TemplateDialog::edit() { void TemplateDialog::slotAdd() { - Opie::Core::owarn << "Not Implemented here" << oendl; } void TemplateDialog::slotRemove() { - Opie::Core::owarn << "Not Implemented here" << oendl; } void TemplateDialog::slotEdit() { - Opie::Core::owarn << "Not Implemented here" << oendl; } void TemplateDialog::slotReturn() { - Opie::Core::owarn << "Not Implemented here" << oendl; } diff --git a/core/pim/todo/todoeditor.cpp b/core/pim/todo/todoeditor.cpp index 7857d52..a1c559d 100644 --- a/core/pim/todo/todoeditor.cpp +++ b/core/pim/todo/todoeditor.cpp @@ -33,4 +33,2 @@ OPimTodo Editor::newTodo( int cur, OPimTodo ev = e->todo(); - Opie::Core::owarn << "Todo uid" << oendl; - Opie::Core::owarn << "Todo " << ev.summary() << " " << ev.progress() << " " << ev.isCompleted() << oendl; ev.setUid(1); diff --git a/core/pim/todo/todomanager.cpp b/core/pim/todo/todomanager.cpp index 7826747..c4b8fbc 100644 --- a/core/pim/todo/todomanager.cpp +++ b/core/pim/todo/todomanager.cpp @@ -42,3 +42,3 @@ TodoManager::TodoManager( QObject *obj ) int el = time.elapsed(); - Opie::Core::owarn << "QTimer for loading " << el/1000 << oendl; + owarn << "QTimer for loading " << el/1000 << oendl; } @@ -51,3 +51,3 @@ OPimTodo TodoManager::event(int uid ) { void TodoManager::updateList() { - Opie::Core::owarn << "update lists" << oendl; + owarn << "update lists" << oendl; m_list = m_db->allRecords(); diff --git a/core/pim/todo/todotemplatemanager.cpp b/core/pim/todo/todotemplatemanager.cpp index 0b20d5a..7690d37 100644 --- a/core/pim/todo/todotemplatemanager.cpp +++ b/core/pim/todo/todotemplatemanager.cpp @@ -38,3 +38,2 @@ void TemplateManager::load() { void TemplateManager::save() { - Opie::Core::owarn << "Saving!!!!" << oendl; Config conf("todolist_templates"); @@ -52,3 +51,2 @@ void TemplateManager::save() { conf.setGroup( QString::number( ev.uid() ) ); - Opie::Core::owarn << "Name " << it.key() << oendl; conf.writeEntry("Name", it.key() ); @@ -60,3 +58,2 @@ void TemplateManager::addEvent( const QString& str, const OPimTodo& ev) { - Opie::Core::owarn << "AddEvent " << str << oendl; OPimTodo todo = ev; diff --git a/core/pim/todo/todoview.cpp b/core/pim/todo/todoview.cpp index 03e1060..3d2c982 100644 --- a/core/pim/todo/todoview.cpp +++ b/core/pim/todo/todoview.cpp @@ -35,3 +35,3 @@ void TodoView::sort() { m_sort = todoWindow()->sorted(m_asc,m_sortOrder ); - Opie::Core::owarn << "m_sort.count() = " << m_sort.count() << oendl; + owarn << "m_sort.count() = " << m_sort.count() << oendl; } @@ -44,3 +44,3 @@ void TodoView::setSortOrder( int order ) { void TodoView::setAscending( bool b ) { - Opie::Core::owarn << "setAscending " << b << oendl; + owarn << "setAscending " << b << oendl; m_asc = b; |