diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-25 14:22:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-25 19:22:15 +0900 |
commit | f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45 (patch) | |
tree | a608cd53eaf5e7a04fc236776c996cd4940b392c /src/rip | |
parent | 7762265fa07270431bf3673b776ffd73c5eba19d (diff) | |
download | k3b-f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45.tar.gz k3b-f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/rip')
-rw-r--r-- | src/rip/k3bvideocdrippingdialog.cpp | 2 | ||||
-rw-r--r-- | src/rip/k3bvideocdview.cpp | 10 |
2 files changed, 2 insertions, 10 deletions
diff --git a/src/rip/k3bvideocdrippingdialog.cpp b/src/rip/k3bvideocdrippingdialog.cpp index 2e47005..00f52f3 100644 --- a/src/rip/k3bvideocdrippingdialog.cpp +++ b/src/rip/k3bvideocdrippingdialog.cpp @@ -23,7 +23,7 @@ #include <tdemessagebox.h> #include <kstandarddirs.h> -// qt includes +// TQt includes #include <tqgroupbox.h> #include <tqcheckbox.h> #include <tqlabel.h> 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(); |