summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:42:26 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-14 10:29:02 +0900
commit670203a4b39be5066f3aadec4cb6c0b257ab3b52 (patch)
tree6c5eee4fc85fd62d2661e77644347ea7f7e68a5d
parent3dfa327a51cb19eb929ded62a239678a8d28dfb6 (diff)
downloadbibletime-670203a4b39be5066f3aadec4cb6c0b257ab3b52.tar.gz
bibletime-670203a4b39be5066f3aadec4cb6c0b257ab3b52.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--bibletime/frontend/keychooser/cbookkeychooser.cpp2
-rw-r--r--bibletime/frontend/keychooser/ckeychooserwidget.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/bibletime/frontend/keychooser/cbookkeychooser.cpp b/bibletime/frontend/keychooser/cbookkeychooser.cpp
index 4e1a6c8..4cc006c 100644
--- a/bibletime/frontend/keychooser/cbookkeychooser.cpp
+++ b/bibletime/frontend/keychooser/cbookkeychooser.cpp
@@ -250,7 +250,7 @@ void CBookKeyChooser::setupCombo(const TQString key, const int depth, const int
/** A keychooser changed. Update and emit a signal if necessary. */
void CBookKeyChooser::keyChooserChanged(int /*newIndex*/) {
- const int activeID = boxes[TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))]; //no so good code!
+ const int activeID = boxes[const_cast<TQObject*>(sender())]; //no so good code!
TQStringList items;
CKeyChooserWidget* chooser;
diff --git a/bibletime/frontend/keychooser/ckeychooserwidget.cpp b/bibletime/frontend/keychooser/ckeychooserwidget.cpp
index 8ad137e..a099506 100644
--- a/bibletime/frontend/keychooser/ckeychooserwidget.cpp
+++ b/bibletime/frontend/keychooser/ckeychooserwidget.cpp
@@ -43,7 +43,7 @@ bool CKCComboBox::eventFilter( TQObject *o, TQEvent *e ) {
if (e->type() == TQEvent::FocusOut) {
TQFocusEvent* f = TQT_TQFOCUSEVENT(e);
- if (TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(lineEdit()) && f->reason() == TQFocusEvent::Tab) {
+ if (o == lineEdit() && f->reason() == TQFocusEvent::Tab) {
int index = listBox()->index( listBox()->findItem(currentText()) );
if (index == -1) {
index = 0;// return 0 if not found
@@ -64,7 +64,7 @@ bool CKCComboBox::eventFilter( TQObject *o, TQEvent *e ) {
emit activated(currentText());
return false;
}
- else if (TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(this)) {
+ else if (o == this) {
emit activated(currentText());
return false;
}