Skip to content

Commit

Permalink
Invalid QSettings pathes fixed
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@9915 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Jan 1, 2009
1 parent 0735673 commit 0bbbe00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/helpviewer/main.cpp
Expand Up @@ -30,7 +30,7 @@ int main( int argc, char ** argv )
// Set up the QSettings environment must be done after qapp is created
QCoreApplication::setOrganizationName( "QuantumGIS" );
QCoreApplication::setOrganizationDomain( "qgis.org" );
QCoreApplication::setApplicationName( "qgis" );
QCoreApplication::setApplicationName( "QGIS" );

QString context = QString::null;
QString myTranslationCode = "";
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/spit/main.cpp
Expand Up @@ -21,7 +21,7 @@ int main( int argc, char ** argv )
// Set up the QSettings environment must be done after qapp is created
QCoreApplication::setOrganizationName( "QuantumGIS" );
QCoreApplication::setOrganizationDomain( "qgis.org" );
QCoreApplication::setApplicationName( "qgis" );
QCoreApplication::setApplicationName( "QGIS" );

QgsSpit w( 0, Qt::Window );
w.show();
Expand Down
2 changes: 1 addition & 1 deletion tools/mapserver_export/ms_main.cpp
Expand Up @@ -31,7 +31,7 @@ int main( int argc, char **argv )
// Set up the QSettings environment must be done after a is created
QCoreApplication::setOrganizationName( "QuantumGIS" );
QCoreApplication::setOrganizationDomain( "qgis.org" );
QCoreApplication::setApplicationName( "qgis" );
QCoreApplication::setApplicationName( "QGIS" );

// Install translations if available. Based on the code in the Qgis
// main.cpp file.
Expand Down

0 comments on commit 0bbbe00

Please sign in to comment.