mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
main and RideItem now use the global function that returns the correct QSettings.
This commit is contained in:
committed by
Sean Rhea
parent
72c40de966
commit
e761091097
@@ -199,8 +199,9 @@ RideItem::htmlSummary()
|
||||
+ dateTime.toString("dddd MMMM d, yyyy, h:mm AP")
|
||||
+ "</h2><h3>Device Type: " + ride->deviceType() + "</h3>");
|
||||
|
||||
QSettings settings(GC_SETTINGS_CO, GC_SETTINGS_APP);
|
||||
QVariant unit = settings.value(GC_UNIT);
|
||||
|
||||
boost::shared_ptr<QSettings> settings = GetApplicationSettings();
|
||||
QVariant unit = settings->value(GC_UNIT);
|
||||
|
||||
if (zones &&
|
||||
*zones &&
|
||||
|
||||
@@ -31,7 +31,7 @@ int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
QSettings *settings;
|
||||
|
||||
//this is the path within the current directory where GC will look for
|
||||
//files to allow USB stick support
|
||||
QString localLibraryPath="Library/GoldenCheetah";
|
||||
@@ -56,14 +56,12 @@ main(int argc, char *argv[])
|
||||
//if it does, create an ini file for settings and cd into the library
|
||||
if(home.exists(localLibraryPath))
|
||||
{
|
||||
settings = new QSettings(home.absolutePath()+"/gc", QSettings::IniFormat);
|
||||
home.cd(localLibraryPath);
|
||||
}
|
||||
//if it does not exist, let QSettings handle storing settings
|
||||
//also cd to the home directory and look for libraries
|
||||
else
|
||||
{
|
||||
settings = new QSettings(GC_SETTINGS_CO, GC_SETTINGS_APP);
|
||||
home = QDir::home();
|
||||
//check if this users previously stored files in the old library path
|
||||
//if they did, use the existing library
|
||||
@@ -86,7 +84,8 @@ main(int argc, char *argv[])
|
||||
home.cd(libraryPath);
|
||||
}
|
||||
}
|
||||
|
||||
boost::shared_ptr<QSettings> settings;
|
||||
settings = GetApplicationSettings();
|
||||
QVariant lastOpened = settings->value(GC_SETTINGS_LAST);
|
||||
QVariant unit = settings->value(GC_UNIT);
|
||||
double crankLength = settings->value(GC_CRANKLENGTH).toDouble();
|
||||
|
||||
Reference in New Issue
Block a user