summaryrefslogtreecommitdiffstats
path: root/src/projects/k3bdataview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projects/k3bdataview.cpp')
-rw-r--r--src/projects/k3bdataview.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/projects/k3bdataview.cpp b/src/projects/k3bdataview.cpp
index e42a966..c3f48ed 100644
--- a/src/projects/k3bdataview.cpp
+++ b/src/projects/k3bdataview.cpp
@@ -66,22 +66,22 @@ K3bDataView::K3bDataView(K3bDataDoc* doc, TQWidget *parent, const char *name )
setMainWidget( mainSplitter );
- connect( m_dataFileView, TQT_SIGNAL(dirSelected(K3bDirItem*)),
- m_dataDirTree, TQT_SLOT(setCurrentDir(K3bDirItem*)) );
- connect( m_doc, TQT_SIGNAL(changed()), TQT_TQOBJECT(this), TQT_SLOT(slotDocChanged()) );
+ connect( m_dataFileView, TQ_SIGNAL(dirSelected(K3bDirItem*)),
+ m_dataDirTree, TQ_SLOT(setCurrentDir(K3bDirItem*)) );
+ connect( m_doc, TQ_SIGNAL(changed()), this, TQ_SLOT(slotDocChanged()) );
m_dataDirTree->checkForNewItems();
m_dataFileView->checkForNewItems();
// the data actions
- TDEAction* actionImportSession = new TDEAction(i18n("&Import Session..."), "gear", 0, TQT_TQOBJECT(this), TQT_SLOT(importSession()),
+ TDEAction* actionImportSession = new TDEAction(i18n("&Import Session..."), "gear", 0, this, TQ_SLOT(importSession()),
actionCollection(), "project_data_import_session" );
- TDEAction* actionClearSession = new TDEAction(i18n("&Clear Imported Session"), "gear", 0, TQT_TQOBJECT(this),
- TQT_SLOT(clearImportedSession()), actionCollection(),
+ TDEAction* actionClearSession = new TDEAction(i18n("&Clear Imported Session"), "gear", 0, this,
+ TQ_SLOT(clearImportedSession()), actionCollection(),
"project_data_clear_imported_session" );
- TDEAction* actionEditBootImages = new TDEAction(i18n("&Edit Boot Images..."), "application-x-cda", 0, TQT_TQOBJECT(this),
- TQT_SLOT(editBootImages()), actionCollection(),
+ TDEAction* actionEditBootImages = new TDEAction(i18n("&Edit Boot Images..."), "application-x-cda", 0, this,
+ TQ_SLOT(editBootImages()), actionCollection(),
"project_data_edit_boot_images" );
actionImportSession->setToolTip( i18n("Import a previously burned session into the current project") );
@@ -100,13 +100,13 @@ K3bDataView::K3bDataView(K3bDataDoc* doc, TQWidget *parent, const char *name )
toolBox()->addStretch();
m_volumeIDEdit = new TQLineEdit( doc->isoOptions().volumeID(), toolBox() );
- m_volumeIDEdit->setValidator( new K3bLatin1Validator( TQT_TQOBJECT(m_volumeIDEdit) ) );
+ m_volumeIDEdit->setValidator( new K3bLatin1Validator( m_volumeIDEdit ) );
toolBox()->addLabel( i18n("Volume Name:") );
toolBox()->addSpacing();
toolBox()->addWidget( m_volumeIDEdit );
- connect( m_volumeIDEdit, TQT_SIGNAL(textChanged(const TQString&)),
+ connect( m_volumeIDEdit, TQ_SIGNAL(textChanged(const TQString&)),
m_doc,
- TQT_SLOT(setVolumeID(const TQString&)) );
+ TQ_SLOT(setVolumeID(const TQString&)) );
// this is just for testing (or not?)
// most likely every project type will have it's rc file in the future