summaryrefslogtreecommitdiffstats
path: root/src/projects/k3bdataview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:05 +0900
commit61b79fc39298cb8646cee439dc032d5bf0169063 (patch)
treede0059ceac6459f416369e6e59ffa116be4a60e1 /src/projects/k3bdataview.cpp
parent766478630b5e0f435d8aef9ee7ba44651e4e431d (diff)
downloadk3b-61b79fc39298cb8646cee439dc032d5bf0169063.tar.gz
k3b-61b79fc39298cb8646cee439dc032d5bf0169063.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/projects/k3bdataview.cpp')
-rw-r--r--src/projects/k3bdataview.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/projects/k3bdataview.cpp b/src/projects/k3bdataview.cpp
index dcdfe8b..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()), 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, 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, this,
- TQT_SLOT(clearImportedSession()), actionCollection(),
+ TQ_SLOT(clearImportedSession()), actionCollection(),
"project_data_clear_imported_session" );
TDEAction* actionEditBootImages = new TDEAction(i18n("&Edit Boot Images..."), "application-x-cda", 0, this,
- TQT_SLOT(editBootImages()), actionCollection(),
+ TQ_SLOT(editBootImages()), actionCollection(),
"project_data_edit_boot_images" );
actionImportSession->setToolTip( i18n("Import a previously burned session into the current project") );
@@ -104,9 +104,9 @@ K3bDataView::K3bDataView(K3bDataDoc* doc, TQWidget *parent, const char *name )
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