diff options
author | Michele Calgaro <[email protected]> | 2024-02-25 14:22:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-25 21:28:35 +0900 |
commit | 0d811e3e031a8c5f8bbdd292e8795bf192ea2454 (patch) | |
tree | d52fcb21a4537960a072815c026d8dd9f2255dbb /src/rip/k3bvideocdview.cpp | |
parent | f989f27b342d311a95695cc4120b1d22e55d02b0 (diff) | |
download | k3b-0d811e3e031a8c5f8bbdd292e8795bf192ea2454.tar.gz k3b-0d811e3e031a8c5f8bbdd292e8795bf192ea2454.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45)
Diffstat (limited to 'src/rip/k3bvideocdview.cpp')
-rw-r--r-- | src/rip/k3bvideocdview.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/rip/k3bvideocdview.cpp b/src/rip/k3bvideocdview.cpp index ff056b7..2e5595c 100644 --- a/src/rip/k3bvideocdview.cpp +++ b/src/rip/k3bvideocdview.cpp @@ -24,7 +24,7 @@ #include <kstandarddirs.h> #include <kstdaction.h> -// qt includes +// TQt includes #include <tqfont.h> #include <tqframe.h> #include <tqheader.h> @@ -368,14 +368,6 @@ void K3bVideoCdView::slotTrackSelectionChanged( TQListViewItem* item ) void K3bVideoCdView::slotStateChanged( TQListViewItem* item ) { - /* > QT 3.1 - if ( !item == 0 && item ->isSelectable() ) { - if ( ( ( VideoTrackViewCheckItem* ) item) ->state() == TQCheckListItem::On) - slotSelect(); - else if ( ( ( VideoTrackViewCheckItem* ) item) ->state() == TQCheckListItem::Off) - slotDeselect(); - } - */ if ( !item == 0 && item ->isSelectable() ) { if ( ( ( VideoTrackViewCheckItem* ) item) ->isOn() ) slotSelect(); |