diff options
Diffstat (limited to 'kspread/plugins/calculator/dlabel.cpp')
-rw-r--r-- | kspread/plugins/calculator/dlabel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/plugins/calculator/dlabel.cpp b/kspread/plugins/calculator/dlabel.cpp index b35f2666..011642c5 100644 --- a/kspread/plugins/calculator/dlabel.cpp +++ b/kspread/plugins/calculator/dlabel.cpp @@ -2,7 +2,7 @@ $Id: dlabel.cpp 466447 2005-10-02 17:54:10Z zander $ KCalc, a scientific calculator for the X window system using the - Qt widget libraries, available at no cost at http://www.troll.no + TQt widget libraries, available at no cost at http://www.troll.no Copyright (C) 1996 Bernd Johannes Wuebben wuebben@math.cornell.edu @@ -26,14 +26,14 @@ #include "dlabel.h" -DLabel::DLabel(QWidget *parent, const char *name) - :QLabel(parent,name){ +DLabel::DLabel(TQWidget *tqparent, const char *name) + :TQLabel(tqparent,name){ button = 0; lit = false; } -void DLabel::mousePressEvent(QMouseEvent *e){ +void DLabel::mousePressEvent(TQMouseEvent *e){ if(e->button() == LeftButton){ lit = !lit; |