diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:54 +0900 |
commit | 3734254d2a8548eede2e66b068b304571a520d39 (patch) | |
tree | e4f4b2c018f8663cce48cccf827673c447536f81 /src/difftextwindow.cpp | |
parent | 7325a710bc21e649eeedca66cad6ae8070fe5e27 (diff) | |
download | kdiff3-3734254d2a8548eede2e66b068b304571a520d39.tar.gz kdiff3-3734254d2a8548eede2e66b068b304571a520d39.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/difftextwindow.cpp')
-rw-r--r-- | src/difftextwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/difftextwindow.cpp b/src/difftextwindow.cpp index 4f5f6dc..ae18a59 100644 --- a/src/difftextwindow.cpp +++ b/src/difftextwindow.cpp @@ -1705,7 +1705,7 @@ bool DiffTextWindowFrame::eventFilter( TQObject* o, TQEvent* e ) /* The following lines work for TQt>4.1 but not for 4.0.x*/ /*if ( d->mimeData()->hasUrls() ) { - TQList<TQUrl> lst = d->mimeData()->urls(); + TQPtrList<TQUrl> lst = d->mimeData()->urls(); if ( !lst.empty() ) { static_cast<TQLineEdit*>(o)->setText( lst[0].toLocalFile() ); |