diff options
author | jstebbins <[email protected]> | 2009-08-11 21:58:52 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-08-11 21:58:52 +0000 |
commit | 3af4671bf310a96cec339feeb05839d4eb979abc (patch) | |
tree | 6480fd1b343a888b58f4187cb666549f57950727 | |
parent | 12cb08b853843552d2373e7d342ec88527561d05 (diff) |
LinGui: missed changing usage of the shutdown function
it was still calling gpm rather than gsm interface
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2762 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/callbacks.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 47737db7f..7a73b7f4c 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -67,8 +67,8 @@ static GList* dvd_device_list(); static void prune_logs(signal_user_data_t *ud); void ghb_notify_done(signal_user_data_t *ud); gpointer ghb_check_update(signal_user_data_t *ud); -static gboolean ghb_can_shutdown_gpm(); -static void ghb_shutdown_gpm(); +static gboolean ghb_can_shutdown_gsm(); +static void ghb_shutdown_gsm(); static gboolean ghb_can_suspend_gpm(); static void ghb_suspend_gpm(); static gboolean appcast_busy = FALSE; @@ -1819,7 +1819,7 @@ shutdown_cb(countdown_t *cd) cd->timeout--; if (cd->timeout == 0) { - ghb_shutdown_gpm(); + ghb_shutdown_gsm(); gtk_main_quit(); return FALSE; } @@ -4556,7 +4556,7 @@ ghb_notify_done(signal_user_data_t *ud) if (ghb_settings_combo_int(ud->settings, "WhenComplete") == 3) { - if (ghb_can_shutdown_gpm()) + if (ghb_can_shutdown_gsm()) { ghb_countdown_dialog(GTK_MESSAGE_WARNING, "Your encode is complete.", |