aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@src.gnome.org>2005-02-05 14:31:01 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-02-05 14:31:01 +0800
commitfe79dcc93b90acb2dbfb26bde35edcadb48b971c (patch)
tree10d835fec20dabc38d1ebb1feabead958d43ed0f
parentc9447e79a2e2071b48e3afeeda022ef3ff4ab857 (diff)
downloadgsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar.gz
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar.bz2
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar.lz
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar.xz
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.tar.zst
gsoc2013-evolution-fe79dcc93b90acb2dbfb26bde35edcadb48b971c.zip
fix the dnd woes on calendar attachments. gui/dialogs/cal-attachment-bar.c
* gui/dialogs/comp-editor.c (attach_message), (drop_action), (drop_popup_copy), (drop_popup_move), (drop_popup_cancel), (drop_popup_free), (drag_data_received), (drag_motion), (comp_editor_class_init), (comp_editor_init), (real_edit_comp): fix the dnd woes on calendar attachments. * gui/dialogs/cal-attachment-bar.c * (add_from_file): reuse mail composer's error message. svn path=/trunk/; revision=28716
-rw-r--r--calendar/gui/dialogs/cal-attachment-bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/cal-attachment-bar.c b/calendar/gui/dialogs/cal-attachment-bar.c
index c816026820..68ecdd8c0a 100644
--- a/calendar/gui/dialogs/cal-attachment-bar.c
+++ b/calendar/gui/dialogs/cal-attachment-bar.c
@@ -180,7 +180,7 @@ add_from_file (CalAttachmentBar *bar,
if (attachment) {
add_common (bar, attachment);
} else {
- e_error_run((GtkWindow *)gtk_widget_get_toplevel((GtkWidget *)bar), "event-editor:no-attach",
+ e_error_run((GtkWindow *)gtk_widget_get_toplevel((GtkWidget *)bar), "mail-composer:no-attach",
file_name, camel_exception_get_description(&ex), NULL);
camel_exception_clear (&ex);
}