summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sendimages/listimageserrordialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sendimages/listimageserrordialog.cpp')
-rw-r--r--kipi-plugins/sendimages/listimageserrordialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kipi-plugins/sendimages/listimageserrordialog.cpp b/kipi-plugins/sendimages/listimageserrordialog.cpp
index 47db9af..d89ee69 100644
--- a/kipi-plugins/sendimages/listimageserrordialog.cpp
+++ b/kipi-plugins/sendimages/listimageserrordialog.cpp
@@ -63,7 +63,7 @@ listImagesErrorDialog::listImagesErrorDialog(TQWidget* parent, TQString Caption,
TQGridLayout* g1 = new TQGridLayout( v1, 1, 3 );
TQLabel *labelMess1 = new TQLabel ( Mess1, box);
- m_listFiles = new KListView( box );
+ m_listFiles = new TDEListView( box );
m_listFiles->addColumn(i18n("Image File Name"));
m_listFiles->addColumn(i18n("From Album"));
m_listFiles->setSorting(1);
@@ -77,7 +77,7 @@ listImagesErrorDialog::listImagesErrorDialog(TQWidget* parent, TQString Caption,
for ( KURL::List::Iterator it = ListOfiles.begin() ; it != ListOfiles.end() ; ++it )
{
- new KListViewItem( m_listFiles,
+ new TDEListViewItem( m_listFiles,
(*it).fileName(),
(*it).directory().section('/', -1) );
}