Skip to content

Commit

Permalink
Drop dead code.
Browse files Browse the repository at this point in the history
  • Loading branch information
zas committed Aug 30, 2012
1 parent 384d589 commit 502c19f
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions src/ui_fileops.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;

Expand Down

0 comments on commit 502c19f

Please sign in to comment.