aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
diff options
context:
space:
mode:
authorq5sys <jt@obs-sec.com>2017-08-01 16:39:37 -0400
committerq5sys <jt@obs-sec.com>2017-08-01 16:39:37 -0400
commit30171e9d5281c83c2fb84cc8acb0dfef38262e8d (patch)
tree8eda434df1adfc54750b8e1e0e7143a9605830f0 /src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
parentMerge branch 'master' of http://github.com/trueos/lumina (diff)
downloadlumina-30171e9d5281c83c2fb84cc8acb0dfef38262e8d.tar.gz
lumina-30171e9d5281c83c2fb84cc8acb0dfef38262e8d.tar.bz2
lumina-30171e9d5281c83c2fb84cc8acb0dfef38262e8d.zip
fix pointer
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp')
-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