aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaXDG.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-08-31 11:48:37 -0400
committerKen Moore <moorekou@gmail.com>2015-08-31 11:48:37 -0400
commit881526d1406cff74c0cef36bcfd95470c97177ab (patch)
tree66386cbb542f8e8732d13854c952d8ff7296e0f5 /libLumina/LuminaXDG.h
parentChange the DEBUG define in DirData.h to DIR_DEBUG: leave the DEBUG variables ... (diff)
downloadlumina-881526d1406cff74c0cef36bcfd95470c97177ab.tar.gz
lumina-881526d1406cff74c0cef36bcfd95470c97177ab.tar.bz2
lumina-881526d1406cff74c0cef36bcfd95470c97177ab.zip
Make sure the *pointer* to the XDGDesktop structure is constant, not the structure itself.
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 9f2f75ab..1bef5caa 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
- const XDGDesktop* XDG();
+ XDGDesktop* XDG() const;
//Other file type identification routines
bool isImage(); //Is a readable image file (for thumbnail support)
bgstack15