summaryrefslogtreecommitdiff
path: root/core/pim/todo/tableview.cpp
authordrw <drw>2002-12-22 17:03:27 (UTC)
committer drw <drw>2002-12-22 17:03:27 (UTC)
commitc8a5bdd7d4b7de88708e88df797bd494eb6f7e71 (patch) (side-by-side diff)
tree7e3468f1dd9afab3a1ccad2978c628b2d737fc1d /core/pim/todo/tableview.cpp
parent5377a2c897ae67ec2cd0cf8e57da9037366efe67 (diff)
downloadopie-c8a5bdd7d4b7de88708e88df797bd494eb6f7e71.zip
opie-c8a5bdd7d4b7de88708e88df797bd494eb6f7e71.tar.gz
opie-c8a5bdd7d4b7de88708e88df797bd494eb6f7e71.tar.bz2
QWhatsThis for main task view and toolbars.
Diffstat (limited to 'core/pim/todo/tableview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/tableview.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp
index d229f52..cd6740a 100644
--- a/core/pim/todo/tableview.cpp
+++ b/core/pim/todo/tableview.cpp
@@ -59,6 +59,17 @@ void TableView::initConfig() {
TableView::TableView( MainWindow* window, QWidget* wid )
: QTable( wid ), TodoView( window ) {
+
+ // Load icons
+ // TODO - probably should be done globally somewhere else, see also quickeditimpl.cpp/h
+ m_pic_completed = Resource::loadPixmap( "todo/completed" );
+ QString namestr;
+ for ( unsigned int i = 1; i < 6; i++ ) {
+ namestr = "todo/priority";
+ namestr.append( QString::number( i ) );
+ m_pic_priority[ i - 1 ] = Resource::loadPixmap( namestr );
+ }
+
setUpdatesEnabled( false );
viewport()->setUpdatesEnabled( false );
m_enablePaint = false;
@@ -99,16 +110,6 @@ TableView::TableView( MainWindow* window, QWidget* wid )
setAscending( TRUE );
m_first = true;
- // Load icons
- // TODO - probably should be done globally somewhere else, see also quickeditimpl.cpp/h
- m_pic_completed = Resource::loadPixmap( "todo/completed" );
- QString namestr;
- for ( unsigned int i = 1; i < 6; i++ ) {
- namestr = "todo/priority";
- namestr.append( QString::number( i ) );
- m_pic_priority[ i - 1 ] = Resource::loadPixmap( namestr );
- }
-
/* now let's init the config */
initConfig();
}