Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r3032 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      libmokoui ([EMAIL PROTECTED])
--- Begin Message ---
Author: zecke
Date: 2007-09-22 01:04:18 +0200 (Sat, 22 Sep 2007)
New Revision: 3032

Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
Log:
2007-09-21  Holger 'Siddhartha' Freyther  <[EMAIL PROTECTED]>

        As Thomas pointed out, don't use the deprecated gtk_object_sink
        but use the g_object_ref_sink method instead.

        * libmokoui/moko-finger-scroll.c:
        (moko_finger_scroll_init):



Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-21 
22:53:42 UTC (rev 3031)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-21 
23:04:18 UTC (rev 3032)
@@ -1,3 +1,11 @@
+2007-09-21  Holger 'Siddhartha' Freyther  <[EMAIL PROTECTED]>
+
+        As Thomas pointed out, don't use the deprecated gtk_object_sink
+        but use the g_object_ref_sink method instead.
+
+        * libmokoui/moko-finger-scroll.c:
+        (moko_finger_scroll_init):
+
 2007-09-21  Thomas Wood  <[EMAIL PROTECTED]>
 
        * libmokoui/moko-stock.c: (_moko_stock_add_icon): Start documentation

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-21 22:53:42 UTC (rev 3031)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-21 23:04:18 UTC (rev 3032)
@@ -759,10 +759,8 @@
        priv->vadjust = GTK_ADJUSTMENT (
                gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
 
-       g_object_ref (G_OBJECT (priv->hadjust));
-       g_object_ref (G_OBJECT (priv->vadjust));
-       gtk_object_sink (GTK_OBJECT (priv->hadjust));
-       gtk_object_sink (GTK_OBJECT (priv->vadjust));
+       g_object_ref_sink (G_OBJECT (priv->hadjust));
+       g_object_ref_sink (G_OBJECT (priv->vadjust));
        
        g_signal_connect (G_OBJECT (self), "button-press-event",
                G_CALLBACK (moko_finger_scroll_button_press_cb), NULL);




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to