summaryrefslogtreecommitdiffstats
path: root/prefs.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-04 11:12:11 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-04 11:12:11 -0700
commitf63605e02e4656b60c6c095f4289dbffa293bc2d (patch)
tree93fd7eed42b5893226d75296b8ed1381134b7833 /prefs.c
parent9035e1b53cb97464662343012da47f9cb13a5124 (diff)
parent834800a1794f1ed92f447a2995767ce820473fed (diff)
downloadsubsurface-f63605e02e4656b60c6c095f4289dbffa293bc2d.tar.gz
Merge branch 'bugfixes' of git://github.com/tcanabrava/subsurface
Diffstat (limited to 'prefs.c')
-rw-r--r--prefs.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/prefs.c b/prefs.c
index d1073c88f..b2cbea751 100644
--- a/prefs.c
+++ b/prefs.c
@@ -81,15 +81,6 @@ void save_preferences(void)
SAVE_UNIT("fahrenheit", temperature, FAHRENHEIT);
SAVE_UNIT("lbs", weight, LBS);
- SAVE_BOOL("TEMPERATURE", visible_cols.temperature);
- SAVE_BOOL("TOTALWEIGHT", visible_cols.totalweight);
- SAVE_BOOL("SUIT", visible_cols.suit);
- SAVE_BOOL("CYLINDER", visible_cols.cylinder);
- SAVE_BOOL("NITROX", visible_cols.nitrox);
- SAVE_BOOL("SAC", visible_cols.sac);
- SAVE_BOOL("OTU", visible_cols.otu);
- SAVE_BOOL("MAXCNS", visible_cols.maxcns);
-
SAVE_STRING("divelist_font", divelist_font);
SAVE_BOOL("po2graph", pp_graphs.po2);
@@ -144,14 +135,6 @@ void load_preferences(void)
GET_UNIT("lbs", weight, KG, LBS);
/* an unset key is 'default' */
- GET_BOOL("CYLINDER", visible_cols.cylinder);
- GET_BOOL("TEMPERATURE", visible_cols.temperature);
- GET_BOOL("TOTALWEIGHT", visible_cols.totalweight);
- GET_BOOL("SUIT", visible_cols.suit);
- GET_BOOL("NITROX", visible_cols.nitrox);
- GET_BOOL("OTU", visible_cols.otu);
- GET_BOOL("MAXCNS", visible_cols.maxcns);
- GET_BOOL("SAC", visible_cols.sac);
GET_BOOL("po2graph", pp_graphs.po2);
GET_BOOL("pn2graph", pp_graphs.pn2);
GET_BOOL("phegraph", pp_graphs.phe);