KDE/kdevelop/lib/interfaces
Matt Rogers <[email protected]>
| Newsgroups | gmane.comp.kde.devel.kdevelop,gmane.comp.kde.devel.quanta |
|---|---|
| Message-ID | <[email protected]> |
SVN commit 529666 by mattr: revert revision 529410 which allows compilation with snapshot. KDevelop tracks trunk and has for quite some time now. CCMAIL: [email protected] CCMAIL: [email protected] M +2 -4 kdevprojectmodel.cpp --- trunk/KDE/kdevelop/lib/interfaces/kdevprojectmodel.cpp #529665:529666 @@ -25,14 +25,12 @@ QIcon KDevProjectFolderItem::icon() const { - return KMimeType::pixmapForURL(KUrl::fromPathOrURL(directory().absolutePath()), 0, -K3Icon::Small); + return KIO::pixmapForURL(KUrl::fromPathOrURL(directory().absolutePath()), 0, K3Icon::Small); } QIcon KDevProjectFileItem::icon() const { - return KMimeType::pixmapForURL(KUrl::fromPathOrURL(fileInfo().absoluteFilePath()), 0, -K3Icon::Small); + return KIO::pixmapForURL(KUrl::fromPathOrURL(fileInfo().absoluteFilePath()), 0, K3Icon::Small); } QList<KDevProjectFolderItem*> KDevProjectItem::folderList() const