aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaXDG.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-08-31 12:08:18 -0400
committerKen Moore <moorekou@gmail.com>2015-08-31 12:08:18 -0400
commitff3f0cf9122511cb8efaaee1671cc1bd63611081 (patch)
treee768864ca835eda88c1f5a3cacebb4db9a88581d /libLumina/LuminaXDG.h
parentMake sure the *pointer* to the XDGDesktop structure is constant, not the stru... (diff)
downloadlumina-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.h2
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)
bgstack15