post-release bump to 2.24.1.
2008-09-24 Vincent Untz <vuntz@gnome.org> * configure.in: post-release bump to 2.24.1. ==================== 2.24.0.1 ==================== 2008-09-24 Vincent Untz <vuntz@gnome.org> svn path=/trunk/; revision=9058
This commit is contained in:
parent
b67f53a8ff
commit
6a3b82a1f6
4 changed files with 16 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-10-11 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* appearance-font.c: (application_font_to_gconf):
|
||||
* theme-installer.c: (invalid_theme_dialog),
|
||||
(gnome_theme_install_real):
|
||||
* theme-util.c: (theme_install_file):
|
||||
Fix GCC warnings from -Wformat-security.
|
||||
|
||||
2008-10-07 Jens Granseuer <jensgr@gmx.net>
|
||||
|
||||
Patch by: Matthias Clasen <mclasen@redhat.com>
|
||||
|
|
|
@ -524,10 +524,11 @@ application_font_to_gconf (GConfPropertyEditor *peditor,
|
|||
GTK_DIALOG_MODAL,
|
||||
GTK_MESSAGE_WARNING,
|
||||
GTK_BUTTONS_NONE,
|
||||
"%s",
|
||||
warning_label);
|
||||
|
||||
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (warning_dialog),
|
||||
warning_label2);
|
||||
"%s", warning_label2);
|
||||
|
||||
gtk_dialog_add_button (GTK_DIALOG (warning_dialog),
|
||||
_("Use previous font"), GTK_RESPONSE_CLOSE);
|
||||
|
|
|
@ -249,7 +249,7 @@ invalid_theme_dialog (const gchar *filename, gboolean maybe_theme_engine)
|
|||
const gchar *engine = _("\"%s\" does not appear to be a valid theme. It may be a theme engine which you need to compile.");
|
||||
|
||||
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
|
||||
GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, primary);
|
||||
GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", primary);
|
||||
if (maybe_theme_engine)
|
||||
gtk_message_dialog_format_secondary_text (
|
||||
GTK_MESSAGE_DIALOG (dialog), engine, filename);
|
||||
|
@ -357,9 +357,10 @@ gnome_theme_install_real (gint filetype, const gchar *tmp_dir, const gchar *them
|
|||
GTK_DIALOG_MODAL,
|
||||
GTK_MESSAGE_ERROR,
|
||||
GTK_BUTTONS_OK,
|
||||
"%s",
|
||||
str);
|
||||
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
|
||||
error->message);
|
||||
"%s", error->message);
|
||||
|
||||
g_free (str);
|
||||
g_error_free (error);
|
||||
|
@ -394,7 +395,7 @@ gnome_theme_install_real (gint filetype, const gchar *tmp_dir, const gchar *them
|
|||
user_message = g_strdup_printf ("<span weight=\"bold\" size=\"larger\">%s</span>", str);
|
||||
g_free (str);
|
||||
|
||||
dialog = gtk_message_dialog_new_with_markup (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_INFO, GTK_BUTTONS_NONE, user_message);
|
||||
dialog = gtk_message_dialog_new_with_markup (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_INFO, GTK_BUTTONS_NONE, "%s", user_message);
|
||||
|
||||
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), _("Would you like to apply it now, or keep your current theme?"));
|
||||
|
||||
|
@ -444,6 +445,7 @@ gnome_theme_install_real (gint filetype, const gchar *tmp_dir, const gchar *them
|
|||
GTK_DIALOG_MODAL,
|
||||
GTK_MESSAGE_INFO,
|
||||
GTK_BUTTONS_OK,
|
||||
"%s",
|
||||
user_message);
|
||||
gtk_dialog_run (GTK_DIALOG (dialog));
|
||||
}
|
||||
|
|
|
@ -249,7 +249,7 @@ theme_install_file (GtkWindow *parent, const gchar *path)
|
|||
GTK_MESSAGE_ERROR,
|
||||
GTK_BUTTONS_OK,
|
||||
_("Could not install theme engine"));
|
||||
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), error->message);
|
||||
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", error->message);
|
||||
|
||||
gtk_dialog_run (GTK_DIALOG (dialog));
|
||||
gtk_widget_destroy (dialog);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue