aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-06-22 08:07:49 -0400
committerKen Moore <ken@pcbsd.org>2015-06-22 08:07:49 -0400
commit5ae409dec796accffa12b3131740b114acc1e13d (patch)
tree20e0c8acfac83e54e160a8e82c0ac1aa07bd55e8 /lumina-desktop
parentAdjust the new window adjustment routine a bit - make it use the center of th... (diff)
downloadlumina-5ae409dec796accffa12b3131740b114acc1e13d.tar.gz
lumina-5ae409dec796accffa12b3131740b114acc1e13d.tar.bz2
lumina-5ae409dec796accffa12b3131740b114acc1e13d.zip
Ensure that "Lumina" is used for the XDG registrations instead of "LUMINA" (proper capitalization based on standards).
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp
index 602ff2ec..4873751a 100644
--- a/lumina-desktop/main.cpp
+++ b/lumina-desktop/main.cpp
@@ -63,8 +63,8 @@ int main(int argc, char ** argv)
}
//Setup any pre-QApplication initialization values
LXDG::setEnvironmentVars();
- setenv("DESKTOP_SESSION","LUMINA",1);
- setenv("XDG_CURRENT_DESKTOP","LUMINA",1);
+ setenv("DESKTOP_SESSION","Lumina",1);
+ setenv("XDG_CURRENT_DESKTOP","Lumina",1);
//Setup the log file
qDebug() << "Lumina Log File:" << logfile.fileName();
if(QFile::exists(logfile.fileName()+".old")){ QFile::remove(logfile.fileName()+".old"); }
bgstack15