Some post-merge cleanup.

This commit is contained in:
Matthew Barnes
2010-05-26 14:43:37 -04:00
parent c9ec8c3f4d
commit 1097c5c115
2 changed files with 5 additions and 32 deletions
+5 -22
View File
@@ -1228,31 +1228,13 @@ action_event_schedule_cb (GtkAction *action,
edit_event_as (cal_shell_view, TRUE);
}
static void
quit_calendar_cb (GtkAction *action,
ECalShellView *cal_shell_view)
{
EShellView *shell_view;
EShellWindow *shell_window;
GdkEvent *event;
shell_view = E_SHELL_VIEW (cal_shell_view);
shell_window = e_shell_view_get_shell_window (shell_view);
/* Synthesize a delete_event on this window. */
event = gdk_event_new (GDK_DELETE);
event->any.window = g_object_ref (((GtkWidget *) shell_window)->window);
event->any.send_event = TRUE;
gtk_main_do_event (event);
gdk_event_free (event);
}
static void
quit_calendar_cb (GtkAction *action,
ECalShellView *cal_shell_view)
ECalShellView *cal_shell_view)
{
EShellView *shell_view;
EShellWindow *shell_window;
GdkWindow *window;
GdkEvent *event;
shell_view = E_SHELL_VIEW (cal_shell_view);
@@ -1260,7 +1242,8 @@ quit_calendar_cb (GtkAction *action,
/* Synthesize a delete_event on this window. */
event = gdk_event_new (GDK_DELETE);
event->any.window = g_object_ref (gtk_widget_get_window (GTK_WIDGET (shell_window)));
window = gtk_widget_get_window (GTK_WIDGET (shell_window));
event->any.window = g_object_ref (window);
event->any.send_event = TRUE;
gtk_main_do_event (event);
gdk_event_free (event);
@@ -1269,7 +1252,7 @@ quit_calendar_cb (GtkAction *action,
static void
action_event_schedule_appointment_cb (GtkAction *action,
ECalShellView *cal_shell_view)
ECalShellView *cal_shell_view)
{
edit_event_as (cal_shell_view, FALSE);
}
-10
View File
@@ -894,16 +894,6 @@ web_view_load_string (EWebView *web_view,
e_web_view_clear (web_view);
}
static void
web_view_load_string (EWebView *web_view,
const gchar *string)
{
if (string != NULL && *string != '\0')
gtk_html_load_from_string (GTK_HTML (web_view), string, -1);
else
e_web_view_clear (web_view);
}
static void
web_view_copy_clipboard (EWebView *web_view)
{