2008-10-06 Claudio Saavedra <csaavedra@igalia.com>
authorClaudio Saavedra <csaavedra@igalia.com>
Mon, 6 Oct 2008 13:27:30 +0000 (13:27 +0000)
committerClaudio Saavedra <csaavedra@igalia.com>
Mon, 6 Oct 2008 13:27:30 +0000 (13:27 +0000)
* src/hildon-date-selector.h:
* src/hildon-picker-dialog.h:
* src/hildon-time-selector.h:
* src/hildon-touch-selector-column.h:
* src/hildon-touch-selector.h:

Set the G_GNUC_CONST macro properly in the hildon_*_get_type()
declarations. Fixes gtk-doc warnings.

ChangeLog
src/hildon-date-selector.h
src/hildon-picker-dialog.h
src/hildon-time-selector.h
src/hildon-touch-selector-column.h
src/hildon-touch-selector.h

index 23a9d36..acdff68 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-10-06  Claudio Saavedra  <csaavedra@igalia.com>
+
+       * src/hildon-date-selector.h:
+       * src/hildon-picker-dialog.h:
+       * src/hildon-time-selector.h:
+       * src/hildon-touch-selector-column.h:
+       * src/hildon-touch-selector.h:
+
+       Set the G_GNUC_CONST macro properly in the hildon_*_get_type()
+       declarations. Fixes gtk-doc warnings.
+
 2008-10-06  Alberto Garcia  <agarcia@igalia.com>
 
        * src/hildon-picker-dialog.h
index 192d21c..e70b6ff 100644 (file)
@@ -66,8 +66,8 @@ struct                                          _HildonDateSelectorClass
 
 
 /* construction */
-GType G_GNUC_CONST
-hildon_date_selector_get_type                   (void);
+GType
+hildon_date_selector_get_type                   (void) G_GNUC_CONST;
 
 GtkWidget*
 hildon_date_selector_new                        (void);
index 24cef64..9c8da37 100644 (file)
@@ -67,8 +67,8 @@ struct                                          _HildonPickerDialogClass
 };
 
 /* construction */
-GType G_GNUC_CONST
-hildon_picker_dialog_get_type                   (void);
+GType
+hildon_picker_dialog_get_type                   (void) G_GNUC_CONST;
 
 GtkWidget*
 hildon_picker_dialog_new                        (GtkWindow * parent);
index 57ddfa0..f6f5484 100644 (file)
@@ -67,8 +67,8 @@ struct                                          _HildonTimeSelectorClass
 
 
 /* construction */
-GType G_GNUC_CONST
-hildon_time_selector_get_type                   (void) ;
+GType
+hildon_time_selector_get_type                   (void) G_GNUC_CONST;
 
 GtkWidget*
 hildon_time_selector_new                        (void);
index 4686ac1..0ee68d5 100644 (file)
@@ -65,8 +65,8 @@ struct                                          _HildonTouchSelectorColumnClass
   GObjectClass parent_class;
 };
 
-GType G_GNUC_CONST
-hildon_touch_selector_column_get_type           (void);
+GType
+hildon_touch_selector_column_get_type           (void) G_GNUC_CONST;
 
 G_END_DECLS
 
index aeefa1a..e4f8131 100644 (file)
@@ -85,8 +85,8 @@ typedef enum
 } HildonTouchSelectorSelectionMode;
 
 /* construction */
-GType G_GNUC_CONST
-hildon_touch_selector_get_type                  (void);
+GType
+hildon_touch_selector_get_type                  (void) G_GNUC_CONST;
 
 GtkWidget *
 hildon_touch_selector_new                       (void);