* hildon-widgets/gtk-infoprint.c (gtk_confirmation_banner_with_icon_name): wooops...
authorLuc Pionchon <luc.pionchon@nokia.com>
Tue, 23 May 2006 16:21:17 +0000 (16:21 +0000)
committerLuc Pionchon <luc.pionchon@nokia.com>
Tue, 23 May 2006 16:21:17 +0000 (16:21 +0000)
released and packaged 0.12.17-1

ChangeLog
configure.ac
debian/changelog
hildon-widgets/gtk-infoprint.c

index 43c553c..7d28ac8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2006-05-23  Luc Pionchon  <luc.pionchon@nokia.com>
+
+       * configure.ac: 0.12.17
+
+2006-05-23  Luc Pionchon  <luc.pionchon@nokia.com>
+
+       * hildon-widgets/gtk-infoprint.c
+       (gtk_confirmation_banner_with_icon_name): wooops, use _with_markup
+       variant to process markup string. NB#28370 (ter)
+
 2006-05-22  Luc Pionchon  <luc.pionchon@nokia.com>
 
        * configure.ac: 0.12.16
index bc84781..24f2fd6 100644 (file)
@@ -1,5 +1,5 @@
 AC_INIT(Makefile.am)
-AM_INIT_AUTOMAKE(hildon-libs, 0.12.16)
+AM_INIT_AUTOMAKE(hildon-libs, 0.12.17)
 AM_CONFIG_HEADER(config.h)
 
 AC_CANONICAL_HOST
index 7f6a5c0..6fbbfc6 100644 (file)
@@ -1,3 +1,9 @@
+hildon-libs (0.12.17-1) unstable; urgency=low
+
+  * fixes NB#28370 (markup was not processed...) - Text not emphasized in Confirmation note
+
+ -- Luc Pionchon <luc.pionchon@nokia.com>  Tue, 23 May 2006 19:10:46 +0300
+
 hildon-libs (0.12.16-1) unstable; urgency=low
 
   * debian/control: removed dependency on gnome-vfs (NB#8015)
index b84f959..60239fb 100644 (file)
@@ -229,7 +229,7 @@ gtk_confirmation_banner_with_icon_name(GtkWindow * parent, const gchar * text,
   gchar *s;
   s = g_strdup_printf("<b>%s</b>", text);
 
-  hildon_banner_show_information((GtkWidget *) parent, icon_name, s);
+  hildon_banner_show_information_with_markup((GtkWidget *) parent, icon_name, s);
 
   g_free(s);
 }