[Lsb-messages] /var/www/bzr/lsb/devel/build_env r2264: fix bug in_GtkTextAppearance (gtk 3.0)

Mats Wichmann mats at linuxfoundation.org
Thu Jun 5 21:04:28 UTC 2014


------------------------------------------------------------
revno: 2264
committer: Mats Wichmann <mats at linuxfoundation.org>
branch nick: build_env
timestamp: Thu 2014-06-05 15:04:28 -0600
message:
  fix bug in_GtkTextAppearance (gtk 3.0)
modified:
  headers/All/5.0/gtk-3.0/gtk/gtk.h.defs
  headers/All/5.1/gtk-3.0/gtk/gtk.h.defs
  headers/gtk-3.0/gtk/gtk.h
  package/Makefile
-------------- next part --------------
=== modified file 'headers/All/5.0/gtk-3.0/gtk/gtk.h.defs'
--- a/headers/All/5.0/gtk-3.0/gtk/gtk.h.defs	2014-04-04 15:23:28 +0000
+++ b/headers/All/5.0/gtk-3.0/gtk/gtk.h.defs	2014-06-05 21:04:28 +0000
@@ -1548,8 +1548,8 @@
     GdkColor bg_color;
     GdkColor fg_color;
     gint rise;
-    guint underline;
-    guint strikethrough:4;
+    guint underline:4;
+    guint strikethrough:1;
     guint draw_bg:1;
     guint inside_selection:1;
     guint is_text:1;

=== modified file 'headers/All/5.1/gtk-3.0/gtk/gtk.h.defs'
--- a/headers/All/5.1/gtk-3.0/gtk/gtk.h.defs	2014-04-04 15:23:28 +0000
+++ b/headers/All/5.1/gtk-3.0/gtk/gtk.h.defs	2014-06-05 21:04:28 +0000
@@ -1548,8 +1548,8 @@
     GdkColor bg_color;
     GdkColor fg_color;
     gint rise;
-    guint underline;
-    guint strikethrough:4;
+    guint underline:4;
+    guint strikethrough:1;
     guint draw_bg:1;
     guint inside_selection:1;
     guint is_text:1;

=== modified file 'headers/gtk-3.0/gtk/gtk.h'
--- a/headers/gtk-3.0/gtk/gtk.h	2014-04-04 15:23:28 +0000
+++ b/headers/gtk-3.0/gtk/gtk.h	2014-06-05 21:04:28 +0000
@@ -3402,8 +3402,8 @@
 	GdkColor bg_color;
 	GdkColor fg_color;
 	gint rise;
-	guint underline;
-	guint strikethrough:4;
+	guint underline:4;
+	guint strikethrough:1;
 	guint draw_bg:1;
 	guint inside_selection:1;
 	guint is_text:1;

=== modified file 'package/Makefile'
--- a/package/Makefile	2014-05-24 20:11:44 +0000
+++ b/package/Makefile	2014-06-05 21:04:28 +0000
@@ -50,7 +50,7 @@
 
 # We define this here instead of directly in the spec file as
 # we need to be able to work out what the produced rpm files will be called
-BUILDNO=2
+BUILDNO=3
 
 # Initialize LIB64 to proper value for 64-bit architectures
 export LIB64:=$(shell case `uname -m` in (ppc64 | s390x | x86_64) echo 64 ;; esac)



More information about the lsb-messages mailing list