diff options
author | Ken Moore <ken@ixsystems.com> | 2017-10-18 11:58:59 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-10-18 11:58:59 -0400 |
commit | 7a3e9e46423d999d47e19b26e910c849028599de (patch) | |
tree | 699d7df6a17e797ba1c87566c2b9bdd241a52722 /src-qt5/core/libLumina/LuminaXDG.cpp | |
parent | Updated how video thumbnails are loaded. Now cached to stop crash when (diff) | |
download | lumina-7a3e9e46423d999d47e19b26e910c849028599de.tar.gz lumina-7a3e9e46423d999d47e19b26e910c849028599de.tar.bz2 lumina-7a3e9e46423d999d47e19b26e910c849028599de.zip |
Another quick checkpoint for Lumina 2 files. Nothing too spectacular yet - still in the experimental stage for the QML usage.
Diffstat (limited to 'src-qt5/core/libLumina/LuminaXDG.cpp')
-rw-r--r-- | src-qt5/core/libLumina/LuminaXDG.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src-qt5/core/libLumina/LuminaXDG.cpp b/src-qt5/core/libLumina/LuminaXDG.cpp index ab1000ab..fdf51a11 100644 --- a/src-qt5/core/libLumina/LuminaXDG.cpp +++ b/src-qt5/core/libLumina/LuminaXDG.cpp @@ -664,11 +664,11 @@ LFileInfo::LFileInfo(){ LFileInfo::LFileInfo(QString filepath){ //overloaded contructor this->setFile(filepath); loadExtraInfo(); -} +} LFileInfo::LFileInfo(QFileInfo info){ //overloaded contructor this->swap(info); //use the given QFileInfo without re-loading it loadExtraInfo(); -} +} //Functions for accessing the extra information // -- Return the mimetype for the file @@ -683,7 +683,7 @@ QString LFileInfo::iconfile(){ return icon; }else{ if(!mime.isEmpty()){ - QString tmp = mime; + QString tmp = mime; tmp.replace("/","-"); return tmp; }else if(this->isExecutable()){ @@ -696,7 +696,7 @@ QString LFileInfo::iconfile(){ // -- Check if this is an XDG desktop file bool LFileInfo::isDesktopFile(){ if(desk==0){ return false; } - return (!desk->filePath.isEmpty()); + return (!desk->filePath.isEmpty()); } // -- Allow access to the XDG desktop data structure |