diff options
author | Ken Moore <moorekou@gmail.com> | 2015-08-31 12:08:18 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-08-31 12:08:18 -0400 |
commit | ff3f0cf9122511cb8efaaee1671cc1bd63611081 (patch) | |
tree | e768864ca835eda88c1f5a3cacebb4db9a88581d /libLumina/LuminaXDG.h | |
parent | Make sure the *pointer* to the XDGDesktop structure is constant, not the stru... (diff) | |
download | lumina-ff3f0cf9122511cb8efaaee1671cc1bd63611081.tar.gz lumina-ff3f0cf9122511cb8efaaee1671cc1bd63611081.tar.bz2 lumina-ff3f0cf9122511cb8efaaee1671cc1bd63611081.zip |
Fix an issues with possible seg-faults when saving a *.desktop structure to file.
Diffstat (limited to 'libLumina/LuminaXDG.h')
-rw-r--r-- | libLumina/LuminaXDG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libLumina/LuminaXDG.h b/libLumina/LuminaXDG.h index 1bef5caa..82243973 100644 --- a/libLumina/LuminaXDG.h +++ b/libLumina/LuminaXDG.h @@ -97,7 +97,7 @@ public: bool isDesktopFile(); // -- Allow access to the internal XDG desktop data structure - XDGDesktop* XDG() const; + XDGDesktop* XDG(); //Other file type identification routines bool isImage(); //Is a readable image file (for thumbnail support) |