summaryrefslogtreecommitdiff
path: root/core/pim/todo/tableview.cpp
authordrw <drw>2002-12-23 17:13:12 (UTC)
committer drw <drw>2002-12-23 17:13:12 (UTC)
commit1cb75c721b69459494cb599730a96bbc1ddc0f65 (patch) (unidiff)
tree9a45955d74016b639593c4a888acb4e96e17e9fb /core/pim/todo/tableview.cpp
parentdeb4685b99d6c5917f92ce188ead09fdd9c37859 (diff)
downloadopie-1cb75c721b69459494cb599730a96bbc1ddc0f65.zip
opie-1cb75c721b69459494cb599730a96bbc1ddc0f65.tar.gz
opie-1cb75c721b69459494cb599730a96bbc1ddc0f65.tar.bz2
Task Editor dialog: 1. added tab icons 2. rearranged the overview tab 3. alarm/reminder tab updates 4. code clean-up. Still need to work on advanced tab and add qwhatsthis.
Diffstat (limited to 'core/pim/todo/tableview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/tableview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp
index cd6740a..48b4dcc 100644
--- a/core/pim/todo/tableview.cpp
+++ b/core/pim/todo/tableview.cpp
@@ -58,13 +58,14 @@ void TableView::initConfig() {
58} 58}
59 59
60TableView::TableView( MainWindow* window, QWidget* wid ) 60TableView::TableView( MainWindow* window, QWidget* wid )
61 : QTable( wid ), TodoView( window ) { 61 : QTable( wid ), TodoView( window ) {
62 62
63 // Load icons 63 // Load icons
64 // TODO - probably should be done globally somewhere else, see also quickeditimpl.cpp/h 64 // TODO - probably should be done globally somewhere else,
65 // see also quickeditimpl.cpp/h, taskeditoroverview.cpp/h
65 m_pic_completed = Resource::loadPixmap( "todo/completed" ); 66 m_pic_completed = Resource::loadPixmap( "todo/completed" );
66 QString namestr; 67 QString namestr;
67 for ( unsigned int i = 1; i < 6; i++ ) { 68 for ( unsigned int i = 1; i < 6; i++ ) {
68 namestr = "todo/priority"; 69 namestr = "todo/priority";
69 namestr.append( QString::number( i ) ); 70 namestr.append( QString::number( i ) );
70 m_pic_priority[ i - 1 ] = Resource::loadPixmap( namestr ); 71 m_pic_priority[ i - 1 ] = Resource::loadPixmap( namestr );