summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/k3b.cpp2
-rw-r--r--src/k3bdebuggingoutputdialog.cpp2
-rw-r--r--src/k3bdebuggingoutputfile.cpp2
-rw-r--r--src/k3bdirview.cpp2
-rw-r--r--src/k3bwelcomewidget.cpp2
-rw-r--r--src/projects/k3baudiotrackview.cpp2
-rw-r--r--src/projects/k3baudioview.cpp2
-rw-r--r--src/projects/k3bvcdtrackdialog.cpp2
-rw-r--r--src/projects/k3bvcdview.cpp2
-rw-r--r--src/rip/k3bvideocdrippingdialog.cpp2
-rw-r--r--src/rip/k3bvideocdview.cpp10
11 files changed, 11 insertions, 19 deletions
diff --git a/src/k3b.cpp b/src/k3b.cpp
index e91591d..d4ada12 100644
--- a/src/k3b.cpp
+++ b/src/k3b.cpp
@@ -16,7 +16,7 @@
#include <config.h>
-// include files for QT
+// include files for TQt
#include <tqdir.h>
#include <tqfile.h>
#include <tqfileinfo.h>
diff --git a/src/k3bdebuggingoutputdialog.cpp b/src/k3bdebuggingoutputdialog.cpp
index 4be80bc..08d861d 100644
--- a/src/k3bdebuggingoutputdialog.cpp
+++ b/src/k3bdebuggingoutputdialog.cpp
@@ -114,7 +114,7 @@ void K3bDebuggingOutputDialog::clear()
addOutput( "System", "K3b Version: " + k3bcore->version() );
addOutput( "System", "KDE Version: " + TQString(KDE::versionString()) );
- addOutput( "System", "QT Version: " + TQString(tqVersion()) );
+ addOutput( "System", "TQt Version: " + TQString(tqVersion()) );
addOutput( "System", "Kernel: " + K3b::kernelVersion() );
// devices in the logfile
diff --git a/src/k3bdebuggingoutputfile.cpp b/src/k3bdebuggingoutputfile.cpp
index 614c512..54dbda6 100644
--- a/src/k3bdebuggingoutputfile.cpp
+++ b/src/k3bdebuggingoutputfile.cpp
@@ -42,7 +42,7 @@ bool K3bDebuggingOutputFile::open()
addOutput( "System", "K3b Version: " + k3bcore->version() );
addOutput( "System", "KDE Version: " + TQString(KDE::versionString()) );
- addOutput( "System", "QT Version: " + TQString(tqVersion()) );
+ addOutput( "System", "TQt Version: " + TQString(tqVersion()) );
addOutput( "System", "Kernel: " + K3b::kernelVersion() );
// devices in the logfile
diff --git a/src/k3bdirview.cpp b/src/k3bdirview.cpp
index d57247a..8d72ffe 100644
--- a/src/k3bdirview.cpp
+++ b/src/k3bdirview.cpp
@@ -36,7 +36,7 @@
#include <k3bpassivepopup.h>
#include <unistd.h>
-// QT-includes
+// TQt includes
#include <tqdir.h>
#include <tqlistview.h>
#include <tqstring.h>
diff --git a/src/k3bwelcomewidget.cpp b/src/k3bwelcomewidget.cpp
index 66b5a7b..8541996 100644
--- a/src/k3bwelcomewidget.cpp
+++ b/src/k3bwelcomewidget.cpp
@@ -438,7 +438,7 @@ void K3bWelcomeWidget::contentsMousePressEvent( TQMouseEvent* e )
}
}
- // menu identifiers in QT are always < 0 (when automatically generated)
+ // menu identifiers in TQt are always < 0 (when automatically generated)
// and unique throughout the entire application!
int r = 0;
int removeAction = 0;
diff --git a/src/projects/k3baudiotrackview.cpp b/src/projects/k3baudiotrackview.cpp
index 523be5a..d20658e 100644
--- a/src/projects/k3baudiotrackview.cpp
+++ b/src/projects/k3baudiotrackview.cpp
@@ -451,7 +451,7 @@ K3bAudioTrackViewItem* K3bAudioTrackView::getTrackViewItem( K3bAudioTrack* track
// so the user may not change the cd-text until the one from the
// file is loaded.
//
- // Since for some reason QT thinks it's bad to open disabled items
+ // Since for some reason TQt thinks it's bad to open disabled items
// we need to open it before disabling it
//
newItem->showSources( track->numberSources() != 1 );
diff --git a/src/projects/k3baudioview.cpp b/src/projects/k3baudioview.cpp
index 17e47eb..7c46e04 100644
--- a/src/projects/k3baudioview.cpp
+++ b/src/projects/k3baudioview.cpp
@@ -37,7 +37,7 @@
#include <tdeactionclasses.h>
#include <k3bprojectplugin.h>
-// QT-includes
+// TQt includes
#include <tqlayout.h>
#include <tqstring.h>
diff --git a/src/projects/k3bvcdtrackdialog.cpp b/src/projects/k3bvcdtrackdialog.cpp
index 0016e2a..1db26c7 100644
--- a/src/projects/k3bvcdtrackdialog.cpp
+++ b/src/projects/k3bvcdtrackdialog.cpp
@@ -13,7 +13,7 @@
* See the file "COPYING" for the exact licensing terms.
*/
-// TQt Includes
+// TQt includes
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
diff --git a/src/projects/k3bvcdview.cpp b/src/projects/k3bvcdview.cpp
index 82397c2..ac562b3 100644
--- a/src/projects/k3bvcdview.cpp
+++ b/src/projects/k3bvcdview.cpp
@@ -13,7 +13,7 @@
* See the file "COPYING" for the exact licensing terms.
*/
-// QT-includes
+// TQt includes
#include <tqlayout.h>
#include <tqstring.h>
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();