aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-08-02 21:00:27 +0000
committerWeblate <noreply@weblate.org>2017-08-02 21:00:27 +0000
commiteb1d9781a1c333ed040e5be464bf62ac67795518 (patch)
tree7e75605aba590d4a8b2e05f978a559047c9586a5 /src-qt5/desktop-utils/lumina-fm
parentMerge remote-tracking branch 'origin/master' (diff)
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-eb1d9781a1c333ed040e5be464bf62ac67795518.tar.gz
lumina-eb1d9781a1c333ed040e5be464bf62ac67795518.tar.bz2
lumina-eb1d9781a1c333ed040e5be464bf62ac67795518.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
index 06f16ad1..d5f219bb 100644
--- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
+++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
@@ -275,7 +275,7 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){
int num = 0;
if(listWidget!=0){
//LIST WIDGET - name and icon only
- if(info->isDesktopFile() && info.XDG()->isValid()){
+ if(info->isDesktopFile() && info->XDG()->isValid()){
QList<QListWidgetItem*> items = listWidget->findItems(info->XDG()->name, Qt::MatchExactly);
//Could be multiple items with the same text in this case - check paths as well
bool found = false;
bgstack15