diff options
author | Ken Moore <ken@pcbsd.org> | 2014-10-06 09:55:02 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-10-06 09:55:02 -0400 |
commit | d0371bef82a055b52a71706c13c3fab196510354 (patch) | |
tree | 228da7d2fb8c15ffcfb09e3499661d3471ad2d26 /lumina-fm | |
parent | Merge pull request #14 from Nanolx/master (diff) | |
download | lumina-d0371bef82a055b52a71706c13c3fab196510354.tar.gz lumina-d0371bef82a055b52a71706c13c3fab196510354.tar.bz2 lumina-d0371bef82a055b52a71706c13c3fab196510354.zip |
Clean up the new global.h usage in all the Lumina subprojects.
1) Move the global.h file usage into libLumina exclusively
2) Define a new "LuminaOS::LuminaShare()" function for retrieving the install directory for Lumina (based on the PREFIX/global.h)
3) Change all the other lumina sub directories/projects to use the new LuminaShare() function when necessary.
4) This also fixes up the loading of translations in many of the subprojects (found a bug in the path used in a number of them).
Reason:
Previous implementation *only* worked if you built lumina from the base directory, causing problems with rebuilding individual pieces of Lumina. This also cleans up the general lumina projects as they only need the LuminaOS class loaded instead of knowing about this other possible OS implementation.
Diffstat (limited to 'lumina-fm')
-rw-r--r-- | lumina-fm/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-fm/main.cpp b/lumina-fm/main.cpp index 267e6e68..bc48d0db 100644 --- a/lumina-fm/main.cpp +++ b/lumina-fm/main.cpp @@ -8,7 +8,7 @@ #include <QTextCodec> #include "MainUI.h" -#include "../global.h" +#include <LuminaOS.h> int main(int argc, char ** argv) { @@ -31,8 +31,8 @@ int main(int argc, char ** argv) QLocale mylocale; QString langCode = mylocale.name(); - if ( ! QFile::exists(PREFIX + "/share/Lumina-DE/i18n/lumina-fm_" + langCode + ".qm" ) ) langCode.truncate(langCode.indexOf("_")); - translator.load( QString("lumina-fm_") + langCode, PREFIX + "/share/i18n/Lumina-DE/" ); + if ( ! QFile::exists(LOS::LuminaShare()+"i18n/lumina-fm_" + langCode + ".qm" ) ) langCode.truncate(langCode.indexOf("_")); + translator.load( QString("lumina-fm_") + langCode, LOS::LuminaShare()+"i18n/" ); a.installTranslator( &translator ); qDebug() << "Locale:" << langCode; |