diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:47:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 22:29:31 +0900 |
commit | 32a52075874929d609602ee52bdb24b18b8e17dc (patch) | |
tree | ee3f82667eedf41a1f43906f63ffbbb307e2ca6c /plugins | |
parent | 21fdca70fe43b87a4370c8a5d805783f859e70ca (diff) | |
download | k3b-32a52075874929d609602ee52bdb24b18b8e17dc.tar.gz k3b-32a52075874929d609602ee52bdb24b18b8e17dc.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a505e95cbfde0aa2edbbd08af0ca4a00fd276d4a)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp index 41d9cbb..218dca7 100644 --- a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp +++ b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp @@ -215,7 +215,7 @@ void K3bAudioMetainfoRenamerPluginWidget::scanDir( K3bDirItem* dir, TQListViewIt TQCheckListItem::CheckBox ); fileViewItem->setText(1, item->k3bName() ); fileViewItem->setOn(true); - d->renamableItems.append( tqMakePair( (K3bFileItem*)item, fileViewItem ) ); + d->renamableItems.append( qMakePair( (K3bFileItem*)item, fileViewItem ) ); } } |