diff options
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 47b51f7c8..8d65f60cb 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -432,15 +432,6 @@ ephy_shell_startup (EphyShell *shell, } static void -delete_files (GList *l) -{ - for (; l != NULL; l = l->next) - { - unlink (l->data); - } -} - -static void ephy_shell_finalize (GObject *object) { EphyShell *shell = EPHY_SHELL (object); @@ -456,10 +447,6 @@ ephy_shell_finalize (GObject *object) LOG ("Unref extension manager") g_object_unref (shell->priv->extensions_manager); - delete_files (shell->priv->del_on_exit); - g_list_foreach (shell->priv->del_on_exit, (GFunc)g_free, NULL); - g_list_free (shell->priv->del_on_exit); - LOG ("Unref toolbars model") if (shell->priv->toolbars_model) { @@ -836,10 +823,3 @@ ephy_shell_get_print_setup_dialog (EphyShell *shell) return shell->priv->print_setup_dialog; } - -void -ephy_shell_delete_on_exit (EphyShell *shell, const char *path) -{ - shell->priv->del_on_exit = g_list_append (shell->priv->del_on_exit, - g_strdup (path)); -} |