summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/checkbook.cpp
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/checkbook.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/checkbook.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/checkbook/checkbook.cpp b/noncore/apps/checkbook/checkbook.cpp
index ee65784..4b81c6d 100644
--- a/noncore/apps/checkbook/checkbook.cpp
+++ b/noncore/apps/checkbook/checkbook.cpp
@@ -73,9 +73,9 @@ Checkbook::Checkbook( QWidget *parent, const QString &n, const QString &fd, char
73 mainWidget = new OTabWidget( this ); 73 mainWidget = new OTabWidget( this );
74 layout->addWidget( mainWidget ); 74 layout->addWidget( mainWidget );
75 75
76 mainWidget->addTab( initInfo(), "help_icon", tr( "Info" ) ); 76 mainWidget->addTab( initInfo(), "checkbook/infotab", tr( "Info" ) );
77 mainWidget->addTab( initTransactions(), "Spreadsheet", tr( "Transactions" ) ); 77 mainWidget->addTab( initTransactions(), "checkbook/trantab", tr( "Transactions" ) );
78 mainWidget->addTab( initCharts(), "DocumentTypePowerPoint", tr( "Charts" ) ); 78 mainWidget->addTab( initCharts(), "checkbook/charttab", tr( "Charts" ) );
79 mainWidget->setCurrentTab( tr( "Info" ) ); 79 mainWidget->setCurrentTab( tr( "Info" ) );
80 80
81 // Load checkbook information 81 // Load checkbook information
@@ -247,7 +247,7 @@ QWidget *Checkbook::initCharts()
247 layout->addMultiCellWidget( graphWidget, 0, 0, 0, 1 ); 247 layout->addMultiCellWidget( graphWidget, 0, 0, 0, 1 );
248 graphWidget->setBackgroundMode( QWidget::PaletteBase ); 248 graphWidget->setBackgroundMode( QWidget::PaletteBase );
249 249
250 QPushButton *btn = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Draw" ), control ); 250 QPushButton *btn = new QPushButton( Resource::loadPixmap( "checkbook/drawbtn" ), tr( "Draw" ), control );
251 QWhatsThis::add( btn, tr( "Click here to draw the graph." ) ); 251 QWhatsThis::add( btn, tr( "Click here to draw the graph." ) );
252 connect( btn, SIGNAL( clicked() ), this, SLOT( slotDrawGraph() ) ); 252 connect( btn, SIGNAL( clicked() ), this, SLOT( slotDrawGraph() ) );
253 layout->addWidget( btn, 1, 1 ); 253 layout->addWidget( btn, 1, 1 );