diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:48:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-17 17:50:17 +0900 |
commit | 3c1e2ceb3aac4f825a4774f05dc7316ac85b92f2 (patch) | |
tree | 98bb4b295d43f3038a42f2037fbded86bcc6d2a2 /kompare | |
parent | 80e5cf10adb1a307abe36a18d9e525b7ab6265ca (diff) | |
download | tdesdk-3c1e2ceb3aac4f825a4774f05dc7316ac85b92f2.tar.gz tdesdk-3c1e2ceb3aac4f825a4774f05dc7316ac85b92f2.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2ceb4caa0bdb7828fdc87dca7b5a719279e23398)
Diffstat (limited to 'kompare')
-rw-r--r-- | kompare/libdiff2/komparemodellist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kompare/libdiff2/komparemodellist.cpp b/kompare/libdiff2/komparemodellist.cpp index 11171ade..7691536c 100644 --- a/kompare/libdiff2/komparemodellist.cpp +++ b/kompare/libdiff2/komparemodellist.cpp @@ -633,7 +633,7 @@ void KompareModelList::slotSelectionChanged( const Diff2::DiffModel* model, cons // This method will signal all the other objects about a change in selection, // it will emit setSelection( const DiffModel*, const Difference* ) to all who are connected kdDebug(8101) << "KompareModelList::slotSelectionChanged( " << model << ", " << diff << " )" << endl; - kdDebug(8101) << "Sender is : " << TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))->className() << endl; + kdDebug(8101) << "Sender is : " << sender()->className() << endl; // kdDebug(8101) << kdBacktrace() << endl; m_selectedModel = const_cast<DiffModel*>(model); @@ -668,7 +668,7 @@ void KompareModelList::slotSelectionChanged( const Diff2::Difference* diff ) // This method will emit setSelection( const Difference* ) to whomever is listening // when for instance in kompareview the selection has changed kdDebug(8101) << "KompareModelList::slotSelectionChanged( " << diff << " )" << endl; - kdDebug(8101) << "Sender is : " << TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))->className() << endl; + kdDebug(8101) << "Sender is : " << sender()->className() << endl; m_selectedDifference = const_cast<Difference*>(diff); |