diff options
author | Timothy Pearson <[email protected]> | 2012-03-07 21:12:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-07 21:12:01 -0600 |
commit | cbc29e30d483a44eab153011273900f44fcca4fe (patch) | |
tree | f27635873df8335236af989df8f12ab2cf1a1c31 | |
parent | b132a043d1f24e7bde019e1f433af848cf8348f5 (diff) | |
download | tellico-cbc29e30d483a44eab153011273900f44fcca4fe.tar.gz tellico-cbc29e30d483a44eab153011273900f44fcca4fe.zip |
Rename additional members for tqt3
-rw-r--r-- | src/filterdialog.cpp | 2 | ||||
-rw-r--r-- | src/mainwindow.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/filterdialog.cpp b/src/filterdialog.cpp index e1e2ea9..4ab54b4 100644 --- a/src/filterdialog.cpp +++ b/src/filterdialog.cpp @@ -113,7 +113,7 @@ void FilterRuleWidget::slotEditRegExp() { TQString(), TQT_TQOBJECT(this)); } - KRegExpEditorInterface* iface = static_cast<KRegExpEditorInterface *>(m_editRegExpDialog->qt_cast(TQString::fromLatin1("KRegExpEditorInterface"))); + KRegExpEditorInterface* iface = static_cast<KRegExpEditorInterface *>(m_editRegExpDialog->tqt_cast(TQString::fromLatin1("KRegExpEditorInterface"))); if(iface) { iface->setRegExp(m_ruleValue->text()); if(m_editRegExpDialog->exec() == TQDialog::Accepted) { diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 6cd1df5..4a07d8e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1428,7 +1428,7 @@ void MainWindow::activateEditSlot(const char* slot_) { int idx = meta->findSlot(slot_ + 1, true); if(idx > -1) { - w->qt_invoke(idx, 0); + w->tqt_invoke(idx, 0); } } } |