summaryrefslogtreecommitdiffstats
path: root/charselectapplet
diff options
context:
space:
mode:
Diffstat (limited to 'charselectapplet')
-rw-r--r--charselectapplet/charselectapplet.cpp8
-rw-r--r--charselectapplet/charselectapplet.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/charselectapplet/charselectapplet.cpp b/charselectapplet/charselectapplet.cpp
index 1ccfaf8..047b3f2 100644
--- a/charselectapplet/charselectapplet.cpp
+++ b/charselectapplet/charselectapplet.cpp
@@ -228,7 +228,7 @@ void CharTable::paintEvent(TQPaintEvent* e)
TQFrame::paintEvent(e);
}
-void CharTable::tqrepaintCell(int r, int c)
+void CharTable::repaintCell(int r, int c)
{
TQPainter p(this);
@@ -307,8 +307,8 @@ void CharTable::selectCell(int row, int col)
_activeRow = row;
_activeCol = col;
- tqrepaintCell(oldRow, oldCol);
- tqrepaintCell(_activeRow, _activeCol);
+ repaintCell(oldRow, oldCol);
+ repaintCell(_activeRow, _activeCol);
TQClipboard *cb = TQApplication::tqclipboard();
TQObject::disconnect( cb, TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) );
@@ -330,7 +330,7 @@ void CharTable::clearCell()
_activeRow = -1;
_activeCol = -1;
- tqrepaintCell(oldRow, oldCol);
+ repaintCell(oldRow, oldCol);
TQObject::disconnect( TQApplication::tqclipboard(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) );
}
diff --git a/charselectapplet/charselectapplet.h b/charselectapplet/charselectapplet.h
index 332c18c..7145077 100644
--- a/charselectapplet/charselectapplet.h
+++ b/charselectapplet/charselectapplet.h
@@ -75,7 +75,7 @@ protected:
void mouseMoveEvent(TQMouseEvent*);
void paintCell(TQPainter*, int, int);
- void tqrepaintCell(int, int);
+ void repaintCell(int, int);
void selectCell(int row, int col);
void insertString(TQString s);