diff --git a/ChangeLog b/ChangeLog index 57487de6e..6e1f42e38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,23 @@ +<<<<<<< .mine +2005-06-10 Dan Winship + + * parser/gapi2xml.pl (addPropElem): Distinguish CONSTRUCT ("must + be set at construct time") and CONSTRUCT_ONLY ("can only be set at + construct time") properties, rather than marking them all + "construct-only". + + * gnome/gnome-api.raw: + * gtk/gtk-api-2.4.raw: + * gtk/gtk-api-2.6.raw: Regen, causing a few formerly-read-only + properties to become writable. + +======= 2005-06-10 Mike Kestner * glade/XML.custom : add a try block on field autoconnect to make it easier to catch type mismatches and such. Suggestion from Gonzalito. +>>>>>>> .r45766 2005-06-09 Lluis Sanchez * glib/Marshaller.cs: Added null check in FilenamePtrToString. diff --git a/doc/ChangeLog b/doc/ChangeLog index bd45c10a7..fa7dbb94c 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2005-06-10 Dan Winship + + * en/Gnome/App.xml (AppId): + * en/Gnome/AppBar.xml (Interactivity, HasProgress, HasStatus): + * en/Gtk/MessageDialog.xml (MessageType): now read-write + 2005-06-06 Dan Winship * en/Gdk/PangoRenderer.xml: update return type of GetDefault diff --git a/doc/en/Gnome/App.xml b/doc/en/Gnome/App.xml index a13f37a98..18451adc1 100644 --- a/doc/en/Gnome/App.xml +++ b/doc/en/Gnome/App.xml @@ -628,7 +628,7 @@ - + Property System.String diff --git a/doc/en/Gnome/AppBar.xml b/doc/en/Gnome/AppBar.xml index bfe05b686..1f7ce2713 100644 --- a/doc/en/Gnome/AppBar.xml +++ b/doc/en/Gnome/AppBar.xml @@ -219,7 +219,7 @@ - + Property Gnome.PreferencesType @@ -236,7 +236,7 @@ - + Property System.Boolean @@ -253,7 +253,7 @@ - + Property System.Boolean diff --git a/doc/en/Gtk/MessageDialog.xml b/doc/en/Gtk/MessageDialog.xml index 433f22189..ccd6cde6d 100644 --- a/doc/en/Gtk/MessageDialog.xml +++ b/doc/en/Gtk/MessageDialog.xml @@ -156,7 +156,7 @@ MessageDialog md = new MessageDialog - + Property Gtk.MessageType diff --git a/gnome/gnome-api.raw b/gnome/gnome-api.raw index 391aa2406..a7d563839 100644 --- a/gnome/gnome-api.raw +++ b/gnome/gnome-api.raw @@ -2023,7 +2023,7 @@ - + @@ -2449,9 +2449,9 @@ - - - + + + diff --git a/gtk/gtk-api-2.4.raw b/gtk/gtk-api-2.4.raw index 87d44f525..3d3a4ad7b 100644 --- a/gtk/gtk-api-2.4.raw +++ b/gtk/gtk-api-2.4.raw @@ -2898,9 +2898,9 @@ - - - + + + @@ -5006,10 +5006,10 @@ - - - - + + + + @@ -7338,7 +7338,7 @@ - + @@ -8408,7 +8408,7 @@ - + @@ -8675,8 +8675,8 @@ - - + + @@ -12992,8 +12992,8 @@ - - + + diff --git a/gtk/gtk-api-2.6.raw b/gtk/gtk-api-2.6.raw index 49deb7ee2..d30449e4e 100644 --- a/gtk/gtk-api-2.6.raw +++ b/gtk/gtk-api-2.6.raw @@ -3123,9 +3123,9 @@ - - - + + + @@ -5397,10 +5397,10 @@ - - - - + + + + @@ -8173,7 +8173,7 @@ - + @@ -9276,7 +9276,7 @@ - + @@ -9543,8 +9543,8 @@ - - + + @@ -13941,8 +13941,8 @@ - - + + diff --git a/parser/gapi2xml.pl b/parser/gapi2xml.pl index e32af86bf..8d1c5f4ae 100755 --- a/parser/gapi2xml.pl +++ b/parser/gapi2xml.pl @@ -867,7 +867,8 @@ sub addPropElem $prop_elem->setAttribute('readable', "true") if ($mode =~ /READ/); $prop_elem->setAttribute('writeable', "true") if ($mode =~ /WRIT/); - $prop_elem->setAttribute('construct-only', "true") if ($mode =~ /CONS/); + $prop_elem->setAttribute('construct', "true") if ($mode =~ /CONSTRUCT(?!_)/); + $prop_elem->setAttribute('construct-only', "true") if ($mode =~ /CONSTRUCT_ONLY/); } sub parseTypeToken