]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-dispatch-operation.c
Fix missing entries in switch statements
[empathy.git] / libempathy / empathy-dispatch-operation.c
index e59d69771e28cfec4a872b58c951436f3c4dfc6e..fa71f0130953c4decd9062974e993c0f07fb8f33 100644 (file)
@@ -130,10 +130,11 @@ empathy_dispatch_operation_set_property (GObject *object,
       case PROP_INCOMING:
         priv->incoming = g_value_get_boolean (value);
         break;
-
       case PROP_USER_ACTION_TIME:
         priv->user_action_time = g_value_get_int64 (value);
         break;
+      default:
+        g_assert_not_reached ();
     }
 }
 
@@ -167,6 +168,8 @@ empathy_dispatch_operation_get_property (GObject *object,
       case PROP_USER_ACTION_TIME:
         g_value_set_int64 (value, priv->user_action_time);
         break;
+      default:
+        g_assert_not_reached ();
     }
 }