diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 19:52:23 +0900 |
| commit | ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch) | |
| tree | b6897028e51844a0aeaafefc499fe4c213660b6f /src/projects/k3bdataview.cpp | |
| parent | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff) | |
| download | k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.tar.gz k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'src/projects/k3bdataview.cpp')
| -rw-r--r-- | src/projects/k3bdataview.cpp | 16 |
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 |
