diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-05 17:31:29 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-05 18:29:01 (EDT) |
commit | e052aba22bf02dd92653d8009b9aa97bb82e166b (patch) | |
tree | 8c2893705f4a811e9da2faf7d414334cdf426b8d /src | |
parent | 3243f40bb2538277f9770ab3b8e531bd91f94021 (diff) | |
download | marquee-e052aba22bf02dd92653d8009b9aa97bb82e166b.zip marquee-e052aba22bf02dd92653d8009b9aa97bb82e166b.tar.gz marquee-e052aba22bf02dd92653d8009b9aa97bb82e166b.tar.bz2 |
about:preferences: Get string list values (as strings)
Diffstat (limited to 'src')
-rw-r--r-- | src/about/preferences.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/about/preferences.c b/src/about/preferences.c index 9e88413..02188e2 100644 --- a/src/about/preferences.c +++ b/src/about/preferences.c @@ -43,7 +43,7 @@ save_pref(gchar *key, gchar *value, MqConfig *config) #define GEN_STR( NAME, LABEL) mq_html_input_text(NAME, LABEL, \ mq_config_get_string(config, NAME)) #define GEN_STRL(NAME, LABEL) mq_html_input_text(NAME, LABEL, \ - "") /* TODO */ + mq_config_get_string(config, NAME)) static gchar * gen_page_general(MqConfig *config) |