summaryrefslogtreecommitdiffstats
path: root/style/lipstik.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:11:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:11:43 -0600
commit17ab3cff0a13f6f49b9f8865ca5988c628cbd91b (patch)
treefaa35294f7e05dc32c9021584c09bffbd423ed53 /style/lipstik.cpp
parent909483079bfc4f433c47d838f5ddd295cfa21ae4 (diff)
downloadtde-style-lipstik-17ab3cff0a13f6f49b9f8865ca5988c628cbd91b.tar.gz
tde-style-lipstik-17ab3cff0a13f6f49b9f8865ca5988c628cbd91b.zip
Rename additional members for tqt3
Diffstat (limited to 'style/lipstik.cpp')
-rw-r--r--style/lipstik.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/style/lipstik.cpp b/style/lipstik.cpp
index 4eb3d6f..c666d07 100644
--- a/style/lipstik.cpp
+++ b/style/lipstik.cpp
@@ -293,7 +293,7 @@ void LipstikStyle::polish(TQWidget* widget)
connect(widget, TQT_SIGNAL(destroyed(TQObject*)), this, TQT_SLOT(khtmlWidgetDestroyed(TQObject*)));
}
- // use qt_cast where possible to check if the widget inheits one of the classes. might improve
+ // use tqt_cast where possible to check if the widget inheits one of the classes. might improve
// performance compared to TQObject::inherits()
if ( ::tqqt_cast<TQPushButton*>(widget) || ::tqqt_cast<TQComboBox*>(widget) ||
::tqqt_cast<TQSpinWidget*>(widget) || ::tqqt_cast<TQSlider*>(widget) ||
@@ -345,7 +345,7 @@ void LipstikStyle::unPolish(TQWidget* widget)
khtmlWidgets.remove(widget);
}
- // use qt_cast to check if the widget inheits one of the classes.
+ // use tqt_cast to check if the widget inheits one of the classes.
if ( ::tqqt_cast<TQPushButton*>(widget) || ::tqqt_cast<TQComboBox*>(widget) ||
::tqqt_cast<TQSpinWidget*>(widget) || ::tqqt_cast<TQSlider*>(widget) ||
::tqqt_cast<TQCheckBox*>(widget) || ::tqqt_cast<TQRadioButton*>(widget) ||
@@ -3946,7 +3946,7 @@ bool LipstikStyle::eventFilter(TQObject *obj, TQEvent *ev)
return false;
}
- //Hover highlight... use qt_cast to check if the widget inheits one of the classes.
+ //Hover highlight... use tqt_cast to check if the widget inheits one of the classes.
if ( ::tqqt_cast<TQPushButton*>(obj) || ::tqqt_cast<TQComboBox*>(obj) ||
::tqqt_cast<TQSpinWidget*>(obj) || ::tqqt_cast<TQCheckBox*>(obj) ||
::tqqt_cast<TQRadioButton*>(obj) || ::tqqt_cast<TQToolButton*>(obj) ||