From: Laurent Monin Date: Thu, 30 Aug 2012 11:15:40 +0000 (+0200) Subject: Drop dead code. X-Git-Tag: v1.2~91 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=502c19f72e810a57ef19cfaf1ef0bad18e46710b Drop dead code. --- diff --git a/src/ui_fileops.c b/src/ui_fileops.c index 9b9a4f9b..f09219c6 100644 --- a/src/ui_fileops.c +++ b/src/ui_fileops.c @@ -49,25 +49,6 @@ void print_term(const gchar *text_utf8) g_free(text_l); } -static void encoding_dialog(const gchar *path); - -static gboolean encoding_dialog_idle(gpointer data) -{ - gchar *path = data; - - encoding_dialog(path); - g_free(path); - - return FALSE; -} - -static gint encoding_dialog_delay(gpointer data) -{ - g_idle_add(encoding_dialog_idle, data); - - return 0; -} - static void encoding_dialog(const gchar *path) { static gboolean warned_user = FALSE; @@ -76,14 +57,6 @@ static void encoding_dialog(const gchar *path) const gchar *lc; const gchar *bf; - /* check that gtk is initialized (loop is level > 0) */ -// if (gtk_main_level() == 0) -// { - /* gtk not initialized */ -// gtk_init_add(encoding_dialog_delay, g_strdup(path)); -// return; -// } - if (warned_user) return; warned_user = TRUE;