aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorAlfred Peng <alfred.peng@sun.com>2004-03-23 17:38:27 +0800
committerJack Jia <jackjia@src.gnome.org>2004-03-23 17:38:27 +0800
commite357c59b3b07fe144e56078562df1737374d2b7c (patch)
tree2be727f57ae6f44cb051ed25fd8d5e3510be9b5a /calendar/gui/dialogs
parentb3d083b0561cc4ab475abfc4ce4dec9d3b8d6dab (diff)
downloadgsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar.gz
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar.bz2
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar.lz
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar.xz
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.tar.zst
gsoc2013-evolution-e357c59b3b07fe144e56078562df1737374d2b7c.zip
get the mail alarm description message from "malarm_description" instead
2004-03-23 Alfred Peng <alfred.peng@sun.com> * gui/dialogs/alarm-options.c (malarm_widgets_to_alarm): get the mail alarm description message from "malarm_description" instead of "dalarm_description". 2004-03-23 Alfred Peng <alfred.peng@sun.com> * gui/alarm-notify/alarm-queue.c (audio_notification): If there is no attachment for a audio reminder, only a message window shows up. Get a beep sound even without attachment for audio reminder. svn path=/trunk/; revision=25154
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/alarm-options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/alarm-options.c b/calendar/gui/dialogs/alarm-options.c
index 512020d4d6..5f57984306 100644
--- a/calendar/gui/dialogs/alarm-options.c
+++ b/calendar/gui/dialogs/alarm-options.c
@@ -649,7 +649,7 @@ malarm_widgets_to_alarm (Dialog *dialog, ECalComponentAlarm *alarm)
eab_destination_freev (destv);
/* Description */
- text_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (dialog->dalarm_description));
+ text_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (dialog->malarm_description));
gtk_text_buffer_get_start_iter (text_buffer, &text_iter_start);
gtk_text_buffer_get_end_iter (text_buffer, &text_iter_end);
str = gtk_text_buffer_get_text (text_buffer, &text_iter_start, &text_iter_end, FALSE);