Enable defautl_filename in settings

We don't have a UI to set it, yet, so you have to manually set it in the
config file, but once you do that it works...

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-05-09 21:37:21 -07:00
parent aea8493165
commit ed6a54f506
2 changed files with 15 additions and 6 deletions

View file

@ -402,12 +402,6 @@ void MainWindow::readSettings()
prefs.divelist_font = strdup(v.toString);
#endif
#if DONT_KNOW_HOW_TO_DO_THAT
v = settings.value(QString("default_filename"));
if (v.isValid())
prefs.default_filename = strdup(v.toString);
#endif
#if ONCE_WE_HAVE_MAPS
v = settings.value(QString_int("map_provider"));
if(v.isValid())
@ -467,6 +461,9 @@ void MainWindow::writeSettings()
SAVE_VALUE("gflow", gflow);
SAVE_VALUE("gfhigh", gfhigh);
settings.endGroup();
settings.beginGroup("GeneralSettings");
SAVE_VALUE("default_filename", default_filename);
settings.endGroup();
}
void MainWindow::closeEvent(QCloseEvent *event)