diff options
author | jstebbins <[email protected]> | 2008-09-06 16:48:54 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-06 16:48:54 +0000 |
commit | 88b4851b757a6276f4b717127a5463005b6a868f (patch) | |
tree | c52e671d57ec6b3a40e5f7b2ede8e800ca33e795 /gtk/src/settings.c | |
parent | 6d9a7854ec8143ac4b45b66eb2a32e357ba6cacb (diff) |
LinGui: Add queue save/restore
- 2 instances of libhb are used. One for queue activities and one for scanning
new sources prior to adding to the queue.
- Improve chapter entry usability. In addition to "return" advancing to the
next chapter for editing, up and down arrows will advance to prev/next and
put the cell in edit mode.
- Add an accelerator key to jump to the destination entry box.
- Fix a queue window resize problem.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1668 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/settings.c')
-rw-r--r-- | gtk/src/settings.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gtk/src/settings.c b/gtk/src/settings.c index 4f2cacbb8..1fad691ce 100644 --- a/gtk/src/settings.c +++ b/gtk/src/settings.c @@ -193,19 +193,6 @@ ghb_settings_get_combo_option(GValue *settings, const gchar *key) return g_strdup(cd->option); } -gchar* -ghb_settings_get_combo_string(GValue *settings, const gchar *key) -{ - const GValue* value; - value = ghb_settings_get_value(settings, key); - if (value == NULL) return g_strdup(""); - ghb_combodata_t *cd; - if (G_VALUE_TYPE(value) != ghb_combodata_get_type()) - return g_strdup(""); - cd = g_value_get_boxed(value); - return g_strdup(cd->svalue); -} - // Map widget names to setting keys // Widgets that map to settings have names // of this format: s_<setting key> |