diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:25 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:25 -0600 |
commit | 940c092f32d40263ad6b24f948eaf4c48b01e99a (patch) | |
tree | f5235b5c44e8aaedd3484a00551e29993d548590 /noatun/library/equalizerview.cpp | |
parent | ced2058eaf8e5af831ebc02812a18937ff7e1de3 (diff) | |
download | tdemultimedia-940c092f32d40263ad6b24f948eaf4c48b01e99a.tar.gz tdemultimedia-940c092f32d40263ad6b24f948eaf4c48b01e99a.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'noatun/library/equalizerview.cpp')
-rw-r--r-- | noatun/library/equalizerview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun/library/equalizerview.cpp b/noatun/library/equalizerview.cpp index c243a349..69acf562 100644 --- a/noatun/library/equalizerview.cpp +++ b/noatun/library/equalizerview.cpp @@ -31,7 +31,7 @@ // PresetList PresetList::PresetList(TQWidget *parent, const char *name) - : KListView(parent, name) + : TDEListView(parent, name) { setItemsRenameable(true); setRenameable(0, true); @@ -55,7 +55,7 @@ void PresetList::rename(TQListViewItem *item, int c) if (!TQFileInfo(item->text(1)).isWritable()) return; - KListView::rename(item, c); + TDEListView::rename(item, c); } //////////////////////////////////////////////// @@ -143,7 +143,7 @@ void EqualizerView::show() connect(mWidget->addPresetButton, TQT_SIGNAL(clicked()), TQT_SLOT(create())); connect(mWidget->resetEqButton, TQT_SIGNAL(clicked()), TQT_SLOT(reset())); - new KListViewItem(mPresets, i18n("Custom")); + new TDEListViewItem(mPresets, i18n("Custom")); connect(mPresets, TQT_SIGNAL(currentChanged(TQListViewItem*)), this, TQT_SLOT(select(TQListViewItem*))); @@ -250,7 +250,7 @@ void EqualizerView::created(VPreset p) // store the filename in TQListViewItem::text(0) TQString n = p.name(); TQString f = p.file(); - new KListViewItem(mPresets, n, f); + new TDEListViewItem(mPresets, n, f); } void EqualizerView::renamed(VPreset p) |