gnomemm r1752 - in goocanvasmm/trunk: . goocanvas/src



Author: murrayc
Date: Mon Oct 20 07:49:09 2008
New Revision: 1752
URL: http://svn.gnome.org/viewvc/gnomemm?rev=1752&view=rev

Log:
Increase version

Modified:
   goocanvasmm/trunk/ChangeLog
   goocanvasmm/trunk/NEWS
   goocanvasmm/trunk/configure.in
   goocanvasmm/trunk/goocanvas/src/item.hg

Modified: goocanvasmm/trunk/NEWS
==============================================================================
--- goocanvasmm/trunk/NEWS	(original)
+++ goocanvasmm/trunk/NEWS	Mon Oct 20 07:49:09 2008
@@ -1,4 +1,10 @@
-0.11.0 (unstable)
+0.12.0 (unstable):
+
+* Item: get/set_child_property() is now a templated method.
+  The new get/set_child_property_value() still uses Glib::Value.
+  (Murray Cumming)
+
+0.11.0 (unstable):
 
 * examples: Added missing copyright comment blocks.
 

Modified: goocanvasmm/trunk/configure.in
==============================================================================
--- goocanvasmm/trunk/configure.in	(original)
+++ goocanvasmm/trunk/configure.in	Mon Oct 20 07:49:09 2008
@@ -16,7 +16,7 @@
 #  Version and initialization
 #########################################################################
 LIBGOOCANVASMM_MAJOR_VERSION=0
-LIBGOOCANVASMM_MINOR_VERSION=11
+LIBGOOCANVASMM_MINOR_VERSION=12
 LIBGOOCANVASMM_MICRO_VERSION=0
 
 #
@@ -26,7 +26,7 @@
 #  ? :+1 : ?   == just some internal changes, nothing breaks but might work
 #                 better
 # CURRENT : REVISION : AGE
-LIBGOOCANVASMM_SO_VERSION=2:0:0
+LIBGOOCANVASMM_SO_VERSION=3:0:0
 
 LIBGOOCANVASMM_VERSION=$LIBGOOCANVASMM_MAJOR_VERSION.$LIBGOOCANVASMM_MINOR_VERSION.$LIBGOOCANVASMM_MICRO_VERSION
 LIBGOOCANVASMM_RELEASE=$LIBGOOCANVASMM_MAJOR_VERSION.$LIBGOOCANVASMM_MINOR_VERSION

Modified: goocanvasmm/trunk/goocanvas/src/item.hg
==============================================================================
--- goocanvasmm/trunk/goocanvas/src/item.hg	(original)
+++ goocanvasmm/trunk/goocanvas/src/item.hg	Mon Oct 20 07:49:09 2008
@@ -67,9 +67,8 @@
 
   _WRAP_METHOD(void get_child_property_value(const Glib::RefPtr<Item>& child, const Glib::ustring& property_name, Glib::ValueBase& value) const, goo_canvas_item_get_child_property)
   _WRAP_METHOD(void set_child_property_value(const Glib::RefPtr<Item>& child, const Glib::ustring& property_name, const Glib::ValueBase& value), goo_canvas_item_set_child_property)
-  _IGNORE(goo_canvas_item_get_child_properties_valist)
-  _IGNORE(goo_canvas_item_set_child_properties_valist)
-
+  _IGNORE(goo_canvas_item_get_child_properties_valist, goo_canvas_item_set_child_properties_valist)
+  _IGNORE(goo_canvas_item_get_child_properties, goo_canvas_item_set_child_properties)
   template <class PropertyType>
   void get_child_property(const Glib::RefPtr<Item>& child, const Glib::ustring& the_property_name, PropertyType& value) const;
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]