2009-03-05 Claudio Saavedra <csaavedra@igalia.com>
authorClaudio Saavedra <csaavedra@igalia.com>
Thu, 5 Mar 2009 14:53:43 +0000 (14:53 +0000)
committerClaudio Saavedra <csaavedra@igalia.com>
Thu, 5 Mar 2009 14:53:43 +0000 (14:53 +0000)
* src/hildon-touch-selector-entry.c
(hildon_touch_selector_entry_get_property),
(hildon_touch_selector_entry_set_property): Add missing 'break'
statements in in 'case' constructs to avoid incorrect warnings.

ChangeLog
src/hildon-touch-selector-entry.c

index d7a9e1f..c8f6ca9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2009-03-05  Claudio Saavedra  <csaavedra@igalia.com>
 
+       * src/hildon-touch-selector-entry.c
+       (hildon_touch_selector_entry_get_property),
+       (hildon_touch_selector_entry_set_property): Add missing 'break'
+       statements in in 'case' constructs to avoid incorrect warnings.
+
+2009-03-05  Claudio Saavedra  <csaavedra@igalia.com>
+
        * src/hildon-time-editor.c
        (hildon_time_editor_get_time_separators): Do not crash if
        the first label is NULL.
index cda188f..34a9aaf 100644 (file)
@@ -83,6 +83,7 @@ hildon_touch_selector_entry_get_property (GObject *object, guint property_id,
   case PROP_TEXT_COLUMN:
     g_value_set_int (value,
                      hildon_touch_selector_entry_get_text_column (HILDON_TOUCH_SELECTOR_ENTRY (object)));
+    break;
   default:
     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
   }
@@ -96,6 +97,7 @@ hildon_touch_selector_entry_set_property (GObject *object, guint property_id,
   case PROP_TEXT_COLUMN:
     hildon_touch_selector_entry_set_text_column (HILDON_TOUCH_SELECTOR_ENTRY (object),
                                                  g_value_get_int (value));
+    break;
   default:
     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
   }