-rw-r--r-- | microkde/ofileselector_p.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/microkde/ofileselector_p.cpp b/microkde/ofileselector_p.cpp index e2af32b..488dee2 100644 --- a/microkde/ofileselector_p.cpp +++ b/microkde/ofileselector_p.cpp @@ -159,8 +159,10 @@ OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap, - QString kind; + QString kind = "dir";; QString _path = path; - if ( isDir ) - kind = "dir"; - else - kind = "file"; + if ( !isDir ){ + int arrow = path.findRev( "." ,-1); + if (arrow > 0 ) { + kind = path.mid(arrow+1); + } + } setPixmap(0, pixmap ); @@ -168,3 +170,2 @@ OFileSelectorItem::OFileSelectorItem( QListView* view, const QPixmap& pixmap, if (arrow > 0 ) { - kind += path.mid( arrow ); _path = path.left(arrow); @@ -293,5 +294,5 @@ OFileViewFileListView::OFileViewFileListView( QWidget* parent, const QString& st m_view->addColumn(" " ); - m_view->addColumn(i18n("Name"), 135 ); + m_view->addColumn(i18n("Name"), 150 ); m_view->addColumn(i18n("Size"), -1 ); - m_view->addColumn(i18n("Date"), 60 ); + m_view->addColumn(i18n("Date"), -1 ); m_view->addColumn(i18n("Mime Type"), -1 ); |