Skip to content
Snippets Groups Projects
Commit 02ce1b39 authored by Mike Kremer's avatar Mike Kremer
Browse files

Fixed path conventions for setting files in MacOSX

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@11896 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 3b0a687d
No related branches found
No related tags found
No related merge requests found
......@@ -359,6 +359,13 @@ int main(int argc, char **argv)
QApplication::setColorSpec( QApplication::CustomColor );
QApplication app(argc,argv);
#ifdef __APPLE__
// Set organization domain
//QCoreApplication::setOrganizationDomain("de.rwth-aachen.graphics.openflipper");
QCoreApplication::setOrganizationName("rwth-aachen.de");
QCoreApplication::setApplicationName("graphics.openflipper");
#endif
if ( !QGLFormat::hasOpenGL() ) {
std::cerr << "This system has no OpenGL support.\n";
return -1;
......@@ -437,6 +444,13 @@ int main(int argc, char **argv)
QCoreApplication app(argc,argv);
#ifdef __APPLE__
// Set organization domain
//QCoreApplication::setOrganizationDomain("de.rwth-aachen.graphics.openflipper");
QCoreApplication::setOrganizationName("rwth-aachen.de");
QCoreApplication::setApplicationName("graphics.openflipper");
#endif
// create widget ( this also reads the ini files )
Core * w = new Core( );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment