From 7e63733ce77d2746c2095de17312f364feb800b2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 7 Mar 2012 21:08:26 -0600 Subject: Rename additional members for tqt3 --- kmymoney2/converter/webpricequote.cpp | 8 ++++---- kmymoney2/widgets/kguiutils.cpp | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/kmymoney2/converter/webpricequote.cpp b/kmymoney2/converter/webpricequote.cpp index 87fe9ec..2a25abf 100644 --- a/kmymoney2/converter/webpricequote.cpp +++ b/kmymoney2/converter/webpricequote.cpp @@ -229,16 +229,16 @@ bool WebPriceQuote::download(const KURL& u, TQString & target, TQWidget* window) // The following parts are copied and adjusted from KIO::NetAccess // If a troll sees this, he kills me -void qt_enter_modal( TQWidget *widget ); -void qt_leave_modal( TQWidget *widget ); +void tqt_enter_modal( TQWidget *widget ); +void tqt_leave_modal( TQWidget *widget ); void WebPriceQuote::enter_loop(void) { TQWidget dummy(0,0,WType_Dialog | WShowModal); dummy.setFocusPolicy( TQ_NoFocus ); - qt_enter_modal(&dummy); + tqt_enter_modal(&dummy); tqApp->enter_loop(); - qt_leave_modal(&dummy); + tqt_leave_modal(&dummy); } void WebPriceQuote::slotResult( KIO::Job * job ) diff --git a/kmymoney2/widgets/kguiutils.cpp b/kmymoney2/widgets/kguiutils.cpp index 24bf3f6..35ab815 100644 --- a/kmymoney2/widgets/kguiutils.cpp +++ b/kmymoney2/widgets/kguiutils.cpp @@ -52,12 +52,12 @@ void kMandatoryFieldGroup::add(TQWidget *widget) { if (!widgets.contains(widget)) { if (widget->inherits(TQCHECKBOX_OBJECT_NAME_STRING)) - connect((TQCheckBox*)widget->qt_cast(TQCHECKBOX_OBJECT_NAME_STRING), + connect((TQCheckBox*)widget->tqt_cast(TQCHECKBOX_OBJECT_NAME_STRING), TQT_SIGNAL(clicked()), this, TQT_SLOT(changed())); else if (widget->inherits(TQCOMBOBOX_OBJECT_NAME_STRING)) { - TQComboBox* combo = (TQComboBox*)widget->qt_cast(TQCOMBOBOX_OBJECT_NAME_STRING); + TQComboBox* combo = (TQComboBox*)widget->tqt_cast(TQCOMBOBOX_OBJECT_NAME_STRING); TQLineEdit* lineedit = combo->lineEdit(); if(lineedit) { connect(lineedit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(changed())); @@ -67,17 +67,17 @@ void kMandatoryFieldGroup::add(TQWidget *widget) } else if (widget->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) - connect((TQLineEdit*)widget->qt_cast(TQLINEEDIT_OBJECT_NAME_STRING), + connect((TQLineEdit*)widget->tqt_cast(TQLINEEDIT_OBJECT_NAME_STRING), TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(changed())); else if (widget->inherits(TQSPINBOX_OBJECT_NAME_STRING)) - connect((TQSpinBox*)widget->qt_cast(TQSPINBOX_OBJECT_NAME_STRING), + connect((TQSpinBox*)widget->tqt_cast(TQSPINBOX_OBJECT_NAME_STRING), TQT_SIGNAL(valueChanged(const TQString&)), this, TQT_SLOT(changed())); else if (widget->inherits(TQLISTBOX_OBJECT_NAME_STRING)) - connect((TQListBox*)widget->qt_cast(TQLISTBOX_OBJECT_NAME_STRING), + connect((TQListBox*)widget->tqt_cast(TQLISTBOX_OBJECT_NAME_STRING), TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(changed())); @@ -122,28 +122,28 @@ void kMandatoryFieldGroup::changed(void) continue; } if (widget->inherits(TQCHECKBOX_OBJECT_NAME_STRING)) { - if (((TQCheckBox*)widget->qt_cast(TQCHECKBOX_OBJECT_NAME_STRING))->state() == TQButton::NoChange) { + if (((TQCheckBox*)widget->tqt_cast(TQCHECKBOX_OBJECT_NAME_STRING))->state() == TQButton::NoChange) { enable = false; break; } else continue; } if (widget->inherits(TQCOMBOBOX_OBJECT_NAME_STRING)) { - if (((TQComboBox*)widget->qt_cast(TQCOMBOBOX_OBJECT_NAME_STRING))->currentText().isEmpty()) { + if (((TQComboBox*)widget->tqt_cast(TQCOMBOBOX_OBJECT_NAME_STRING))->currentText().isEmpty()) { enable = false; break; } else continue; } if (widget->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) { - if (((TQLineEdit*)widget->qt_cast(TQLINEEDIT_OBJECT_NAME_STRING))->text().isEmpty()) { + if (((TQLineEdit*)widget->tqt_cast(TQLINEEDIT_OBJECT_NAME_STRING))->text().isEmpty()) { enable = false; break; } else continue; } if (widget->inherits(TQLISTBOX_OBJECT_NAME_STRING)) { - if (((TQListBox*)widget->qt_cast(TQLISTBOX_OBJECT_NAME_STRING))->selectedItem() == 0) { + if (((TQListBox*)widget->tqt_cast(TQLISTBOX_OBJECT_NAME_STRING))->selectedItem() == 0) { enable = false; break; } else -- cgit v1.2.3