From: Sebastian Trueg Date: Tue, 15 Apr 2008 14:55:42 +0000 (+0000) Subject: Use the targetUrl instead of the plain url for the metainfo display. This way stuff... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/8f582495f6dcac94d463607341acdebc1016cc2e?ds=inline Use the targetUrl instead of the plain url for the metainfo display. This way stuff like the tags io slave work properly. svn path=/trunk/KDE/kdebase/apps/; revision=797341 --- diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index b4062b856..a4c3d4157 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -364,13 +364,13 @@ void InfoSidebarPage::showMetaInfo() } if (m_metaDataWidget != 0) { - m_metaDataWidget->setFile(fileItem.url()); + m_metaDataWidget->setFile(fileItem.targetUrl()); } } else { if (m_metaDataWidget != 0) { KUrl::List urls; foreach (const KFileItem& item, selectedItems) { - urls.append(item.url()); + urls.append(item.targetUrl()); } m_metaDataWidget->setFiles(urls); }