+2007-08-26 [wwp] 2.10.0cvs176
+
+ * src/alertpanel.c
+ * src/messageview.c
+ * src/prefs_actions.c
+ Revert parts of 2.10.0cvs174: g_markup_printf_escaped()
+ will have to be used when necessary *before* calling
+ alertpanel functions.
+
2007-08-25 [paul] 2.10.0cvs175
* src/prefs_actions.c
( cvs diff -u -r 1.6.2.15 -r 1.6.2.16 src/common/log.c; ) > 2.10.0cvs173.patchset
( cvs diff -u -r 1.17.2.36 -r 1.17.2.37 src/alertpanel.c; cvs diff -u -r 1.94.2.147 -r 1.94.2.148 src/messageview.c; cvs diff -u -r 1.60.2.48 -r 1.60.2.49 src/prefs_actions.c; cvs diff -u -r 1.6.2.16 -r 1.6.2.17 src/common/log.c; ) > 2.10.0cvs174.patchset
( cvs diff -u -r 1.60.2.49 -r 1.60.2.50 src/prefs_actions.c; ) > 2.10.0cvs175.patchset
+( cvs diff -u -r 1.17.2.37 -r 1.17.2.38 src/alertpanel.c; cvs diff -u -r 1.94.2.148 -r 1.94.2.149 src/messageview.c; cvs diff -u -r 1.60.2.50 -r 1.60.2.51 src/prefs_actions.c; ) > 2.10.0cvs176.patchset
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=175
+EXTRA_VERSION=176
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
GtkWidget *button3;
const gchar *label2;
const gchar *label3;
- gchar *esc_message;
gchar *tmp = title?g_markup_printf_escaped("%s", title)
:g_strdup("");
gchar *title_full = g_strdup_printf("<span weight=\"bold\" "
if (font_desc)
gtk_widget_modify_font(label, font_desc);
g_free(title_full);
-
- esc_message = g_markup_printf_escaped("%s", message);
- label = gtk_label_new(esc_message);
- g_free(esc_message);
+
+ label = gtk_label_new(message);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
if (ok != 0) {
AlertValue val;
gchar *message;
- message = g_strdup_printf(
+ message = g_markup_printf_escaped(
_("The notification address to which the return receipt is\n"
"to be sent does not correspond to the return path:\n"
"Notification address: %s\n"
}
if (action_get_type(entry_text) == ACTION_ERROR) {
- alertpanel_error(_("The command\n%s\nhas a syntax error."), entry_text);
+ gchar *message;
+ message = g_markup_printf_escaped(_("The command\n%s\nhas a syntax error."),
+ entry_text);
+ alertpanel_error(message);
+ g_free(message);
return -1;
}