]> Pileus Git - ~andy/gtk/commitdiff
Add a couple of missing G_GNUC_CONST's.
authorElliot Lee <sopwith@src.gnome.org>
Mon, 13 Nov 2000 19:47:31 +0000 (19:47 +0000)
committerElliot Lee <sopwith@src.gnome.org>
Mon, 13 Nov 2000 19:47:31 +0000 (19:47 +0000)
Add a couple of missing G_GNUC_CONST's.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdk.h

index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index ff154185b838fe96396796631815e77db253ee09..21d9fea76ab26338180d64483ee79fadfd7059ee 100644 (file)
@@ -1,3 +1,6 @@
+2000-11-13 Elliot Lee <sopwith@redhat.com>
+       * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
+
 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
 
        * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
index 08a31740ef2878ca6f521809fc7ab9148496b5e0..8553663cc8e5a9083dffa8584ac8d024e2e54ccc 100644 (file)
--- a/gdk/gdk.h
+++ b/gdk/gdk.h
@@ -101,11 +101,11 @@ GdkGrabStatus gdk_keyboard_grab      (GdkWindow    *window,
 void          gdk_keyboard_ungrab    (guint32       time);
 gboolean      gdk_pointer_is_grabbed (void);
 
-gint gdk_screen_width  (void);
-gint gdk_screen_height (void);
+gint gdk_screen_width  (void) G_GNUC_CONST;
+gint gdk_screen_height (void) G_GNUC_CONST;
 
-gint gdk_screen_width_mm  (void);
-gint gdk_screen_height_mm (void);
+gint gdk_screen_width_mm  (void) G_GNUC_CONST;
+gint gdk_screen_height_mm (void) G_GNUC_CONST;
 
 void gdk_flush (void);
 void gdk_beep (void);
@@ -136,7 +136,7 @@ gboolean gdk_event_send_client_message (GdkEvent    *event,
 
 /* Key values
  */
-gchar*   gdk_keyval_name         (guint        keyval);
+gchar*   gdk_keyval_name         (guint        keyval) G_GNUC_CONST;
 guint    gdk_keyval_from_name    (const gchar *keyval_name);
 void     gdk_keyval_convert_case (guint        symbol,
                                  guint       *lower,