[Tomoe-cvs 923] CVS update: libtomoe-gtk/src

Back to archive index

Hiroyuki Ikezoe ikezo****@users*****
2006年 11月 23日 (木) 15:48:03 JST


Index: libtomoe-gtk/src/tomoe-edit-strokes.c
diff -u libtomoe-gtk/src/tomoe-edit-strokes.c:1.8 libtomoe-gtk/src/tomoe-edit-strokes.c:1.9
--- libtomoe-gtk/src/tomoe-edit-strokes.c:1.8	Wed Nov 22 15:38:15 2006
+++ libtomoe-gtk/src/tomoe-edit-strokes.c	Thu Nov 23 15:48:02 2006
@@ -52,15 +52,15 @@
 
 G_DEFINE_TYPE (TomoeEditStrokes, tomoe_edit_strokes, GTK_TYPE_DIALOG)
 
-static void tomoe_edit_strokes_dispose      (GObject       *object);
-static void tomoe_edit_strokes_set_property (GObject       *object,
-                                             guint          prop_id,
-                                             const GValue  *value,
-                                             GParamSpec    *pspec);
-static void tomoe_edit_strokes_get_property (GObject       *object,
-                                             guint          prop_id,
-                                             GValue        *value,
-                                             GParamSpec    *pspec);
+static void dispose      (GObject       *object);
+static void set_property (GObject       *object,
+                          guint          prop_id,
+                          const GValue  *value,
+                          GParamSpec    *pspec);
+static void get_property (GObject       *object,
+                          guint          prop_id,
+                          GValue        *value,
+                          GParamSpec    *pspec);
 static void tomoe_edit_strokes_set_sensitive (TomoeEditStrokes         *page);
 
 static void on_ok_button_clicked          (GtkButton           *button,
@@ -91,9 +91,9 @@
 {
     GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
 
-    gobject_class->dispose      = tomoe_edit_strokes_dispose;
-    gobject_class->set_property = tomoe_edit_strokes_set_property;
-    gobject_class->get_property = tomoe_edit_strokes_get_property;
+    gobject_class->dispose      = dispose;
+    gobject_class->set_property = set_property;
+    gobject_class->get_property = get_property;
     g_object_class_install_property (gobject_class,
                                      PROP_TOMOE_CHAR,
                                      g_param_spec_object ("tomoe-char",
@@ -106,10 +106,10 @@
 }
 
 static void
-tomoe_edit_strokes_set_property (GObject      *object,
-                           guint         prop_id,
-                           const GValue *value,
-                           GParamSpec   *pspec)
+set_property (GObject      *object,
+              guint         prop_id,
+              const GValue *value,
+              GParamSpec   *pspec)
 {
     TomoeEditStrokesPrivate *priv = TOMOE_EDIT_STROKES_GET_PRIVATE (object);
 
@@ -125,10 +125,10 @@
 }
 
 static void
-tomoe_edit_strokes_get_property (GObject    *object,
-                           guint       prop_id,
-                           GValue     *value,
-                           GParamSpec *pspec)
+get_property (GObject    *object,
+              guint       prop_id,
+              GValue     *value,
+              GParamSpec *pspec)
 {
     TomoeEditStrokesPrivate *priv = TOMOE_EDIT_STROKES_GET_PRIVATE (object);
 
@@ -144,7 +144,7 @@
 }
 
 static void
-tomoe_edit_strokes_dispose (GObject *object)
+dispose (GObject *object)
 {
     TomoeEditStrokesPrivate *priv = TOMOE_EDIT_STROKES_GET_PRIVATE (object);
 


tomoe-cvs メーリングリストの案内
Back to archive index