Remove a redundant branch
authorMatthias Clasen <mclasen@redhat.com>
Mon, 5 Jul 2010 23:48:04 +0000 (19:48 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 6 Jul 2010 03:13:18 +0000 (23:13 -0400)
Since the name has been interned already at pspec creation time,
we can just call g_intern_string().

gobject/gbinding.c

index 8bb91a83bb2982779c505ec1977f6cd9f7bd5aec..06aa7f43abda92aeb6376266f93cbb440393b21a 100644 (file)
@@ -333,10 +333,7 @@ on_source_notify (GObject    *gobject,
   if (binding->is_frozen)
     return;
 
-  if (pspec->flags & G_PARAM_STATIC_NAME)
-    p_name = g_intern_static_string (pspec->name);
-  else
-    p_name = g_intern_string (pspec->name);
+  p_name = g_intern_string (pspec->name);
 
   if (p_name != binding->source_property)
     return;
@@ -377,10 +374,7 @@ on_target_notify (GObject    *gobject,
   if (binding->is_frozen)
     return;
 
-  if (pspec->flags & G_PARAM_STATIC_NAME)
-    p_name = g_intern_static_string (pspec->name);
-  else
-    p_name = g_intern_string (pspec->name);
+  p_name = g_intern_string (pspec->name);
 
   if (p_name != binding->target_property)
     return;