summaryrefslogtreecommitdiffstats
path: root/kbruch/src/statisticsview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbruch/src/statisticsview.cpp')
-rw-r--r--kbruch/src/statisticsview.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kbruch/src/statisticsview.cpp b/kbruch/src/statisticsview.cpp
index d6b8ff37..a3984707 100644
--- a/kbruch/src/statisticsview.cpp
+++ b/kbruch/src/statisticsview.cpp
@@ -48,17 +48,17 @@ StatisticsView::StatisticsView(TQWidget * parent, const char * name):
/* set the caption of the window */
// setCaption(i18n("Statistics"));
- /* add a layout as a base */
- layout1 = new TQVBoxLayout(this);
- layout1->setSpacing(6);
- layout1->setMargin(6);
+ /* add a tqlayout as a base */
+ tqlayout1 = new TQVBoxLayout(this);
+ tqlayout1->setSpacing(6);
+ tqlayout1->setMargin(6);
/* now add a v-spacer */
TQSpacerItem * v_spacer = new TQSpacerItem(1, 1);
- layout1->addItem(v_spacer);
+ tqlayout1->addItem(v_spacer);
/* create a grid to show the labels */
- labelGrid = new TQGridLayout(layout1, 3, 2);
+ labelGrid = new TQGridLayout(tqlayout1, 3, 2);
/* add 6 labels to the grid */
info1Label = new TQLabel(this);
@@ -112,10 +112,10 @@ StatisticsView::StatisticsView(TQWidget * parent, const char * name):
/* now add a v-spacer */
v_spacer = new TQSpacerItem(1, 1);
- layout1->addItem(v_spacer);
+ tqlayout1->addItem(v_spacer);
/* the Reset button */
- buttonLayout = new TQHBoxLayout(layout1);
+ buttonLayout = new TQHBoxLayout(tqlayout1);
resetBtn = new TQPushButton(i18n("&Reset"), this);
TQObject::connect(resetBtn, TQT_SIGNAL(clicked()), this, TQT_SLOT(resetStatistics()));
buttonLayout->addWidget(resetBtn);
@@ -150,14 +150,14 @@ void StatisticsView::addCorrect()
{
++m_count;
++m_correct;
- (void) calc(); /* repaint the statistics */
+ (void) calc(); /* tqrepaint the statistics */
}
/* called, if a task was solved wrong */
void StatisticsView::addWrong()
{
++m_count;
- (void) calc(); /* repaint the statistics */
+ (void) calc(); /* tqrepaint the statistics */
}