diff options
Diffstat (limited to 'src/gui/stringmapdialog.cpp')
-rw-r--r-- | src/gui/stringmapdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/stringmapdialog.cpp b/src/gui/stringmapdialog.cpp index bf03ae9..fb3878d 100644 --- a/src/gui/stringmapdialog.cpp +++ b/src/gui/stringmapdialog.cpp @@ -32,7 +32,7 @@ StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget TQWidget* page = new TQWidget(this); TQVBoxLayout* l = new TQVBoxLayout(page, 0, KDialog::spacingHint()); - m_listView = new KListView(page); + m_listView = new TDEListView(page); m_listView->setAllColumnsShowFocus(true); m_listView->setShowSortIndicator(true); m_listView->addColumn(TQString()); @@ -65,7 +65,7 @@ StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget for(TQMap<TQString, TQString>::ConstIterator it = map_.begin(); it != map_.end(); ++it) { if(!it.data().isEmpty()) { - (void) new KListViewItem(m_listView, it.key(), it.data()); + (void) new TDEListViewItem(m_listView, it.key(), it.data()); } } @@ -83,7 +83,7 @@ void StringMapDialog::slotAdd() { if(item && s1 == item->text(0)) { // only update values if same key item->setText(1, s2); } else { - item = new KListViewItem(m_listView, s1, s2); + item = new TDEListViewItem(m_listView, s1, s2); } m_listView->ensureItemVisible(item); m_listView->setSelected(item, true); |