From 502c19f72e810a57ef19cfaf1ef0bad18e46710b Mon Sep 17 00:00:00 2001 From: Laurent Monin Date: Thu, 30 Aug 2012 13:15:40 +0200 Subject: [PATCH] Drop dead code. --- src/ui_fileops.c | 27 --------------------------- 1 file changed, 27 deletions(-) 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; -- 2.20.1