summaryrefslogtreecommitdiffstats
path: root/yakuake/src/image_button.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:19 -0600
commit7d739dcefd17edfd57af2072229178b456a31fbb (patch)
tree6a66ee806f7e6158ddf98ba3a7bf0c9d36246aaa /yakuake/src/image_button.cpp
parentb5149981f0a49f6e9354355a5596678c9f02a543 (diff)
downloadyakuake-7d739dcefd17edfd57af2072229178b456a31fbb.tar.gz
yakuake-7d739dcefd17edfd57af2072229178b456a31fbb.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'yakuake/src/image_button.cpp')
-rw-r--r--yakuake/src/image_button.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/yakuake/src/image_button.cpp b/yakuake/src/image_button.cpp
index c9b866d..ab364fb 100644
--- a/yakuake/src/image_button.cpp
+++ b/yakuake/src/image_button.cpp
@@ -55,7 +55,7 @@ void ImageButton::setToggled(bool enable)
else
pressed = false;
- tqrepaint();
+ repaint();
}
}
@@ -98,7 +98,7 @@ void ImageButton::enterEvent(TQEvent*)
{
state = pressed ? 2 : 1;
- tqrepaint();
+ repaint();
}
void ImageButton::leaveEvent(TQEvent*)
@@ -107,7 +107,7 @@ void ImageButton::leaveEvent(TQEvent*)
if (popup_timer) popup_timer->stop();
- tqrepaint();
+ repaint();
}
void ImageButton::mousePressEvent(TQMouseEvent*)
@@ -118,7 +118,7 @@ void ImageButton::mousePressEvent(TQMouseEvent*)
if (popup_timer) popup_timer->stop();
- tqrepaint();
+ repaint();
if (popup_menu)
{
@@ -142,7 +142,7 @@ void ImageButton::mouseReleaseEvent(TQMouseEvent*)
if (popup_timer) popup_timer->stop();
- tqrepaint();
+ repaint();
if (toggle)
emit toggled(pressed);