Fixed const declarations per Wiki's Const-correctness.
authorMatt Birkholz <matt@birkholz.chandler.az.us>
Sat, 16 Jul 2011 00:27:40 +0000 (17:27 -0700)
committerMatt Birkholz <matt@birkholz.chandler.az.us>
Sat, 16 Jul 2011 00:27:40 +0000 (17:27 -0700)
13 files changed:
src/gtk/Includes/cairo.cdecl
src/gtk/Includes/gdk-pixbuf-loader.cdecl
src/gtk/Includes/gdkcairo.cdecl
src/gtk/Includes/gdkcolor.cdecl
src/gtk/Includes/gdkfont.cdecl
src/gtk/Includes/gdkgc.cdecl
src/gtk/Includes/gdkkeys.cdecl
src/gtk/Includes/gdkwindow.cdecl
src/gtk/Includes/gtkstyle.cdecl
src/gtk/Includes/gtkwidget.cdecl
src/gtk/Includes/pango-context.cdecl
src/gtk/Includes/pango-font.cdecl
src/gtk/Includes/pango-layout.cdecl

index 2944ccfd5cc14e9a3d860fac660cf74822de4ffc..baaf3a98e386617f01d47a5b54f48977d29185ef 100644 (file)
@@ -6,7 +6,7 @@ cairo/cairo.h (v1.4) |#
 ;(include "cairo-deprecated")
 
 ;(extern int cairo_version)
-;(extern (const (* char)) cairo_version_string)
+;(extern (* (const char)) cairo_version_string)
 ;(typedef cairo_bool_t int)
 ;(typedef cairo_t (struct _cairo))
 ;(typedef cairo_surface_t (struct _cairo_surface))
@@ -76,11 +76,11 @@ cairo/cairo.h (v1.4) |#
 
 ;(extern (* void) cairo_get_user_data
 ;      (cr (* cairo_t))
-;      (key (const (* cairo_user_data_key_t))))
+;      (key (* (const cairo_user_data_key_t))))
 
 ;(extern cairo_status_t cairo_set_user_data
 ;      (cr (* cairo_t))
-;      (key (const (* cairo_user_data_key_t)))
+;      (key (* (const cairo_user_data_key_t)))
 ;      (user_date (* void))
 ;        (destroy cairo_destroy_func_t))
 
@@ -173,7 +173,7 @@ cairo/cairo.h (v1.4) |#
 
 ;(extern void cairo_set_dash
 ;      (cr         (* cairo_t))
-;      (dashes     (const (* double)))
+;      (dashes     (* (const double)))
 ;      (num_dashes int)
 ;      (offset     double))
 
@@ -186,10 +186,10 @@ cairo/cairo.h (v1.4) |#
 (extern void cairo_rotate (cr (* cairo_t)) (angle double))
 
 ;(extern void cairo_transform
-;      (cr (* cairo_t)) (matrix (const (* cairo_matrix_t))))
+;      (cr (* cairo_t)) (matrix (* (const cairo_matrix_t))))
 
 ;(extern void cairo_set_matrix
-;      (cr (* cairo_t)) (matrix (const (* cairo_matrix_t))))
+;      (cr (* cairo_t)) (matrix (* (const cairo_matrix_t))))
 
 ;(extern void cairo_identity_matrix (cr (* cairo_t)))
 
@@ -729,7 +729,7 @@ cairo_surface_get_content (cairo_surface_t *surface);
 |#
 (extern cairo_status_t cairo_surface_write_to_png
        (surface (* cairo_surface_t))
-       (filename (const (* char))))
+       (filename (* (const char))))
 #|
  (extern cairo_status_t
 cairo_surface_write_to_png_stream (cairo_surface_t     *surface,
@@ -1004,7 +1004,7 @@ cairo_matrix_transform_distance (const cairo_matrix_t *matrix,
 |#
 
 ;(extern void cairo_matrix_transform_point
-;      (matrix (const (* cairo_matrix_t)))
+;      (matrix (* (const cairo_matrix_t)))
 ;      (x (* double)) (y (* double)))
 
 ;(extern void cairo_debug_reset_static_data)
index 987c7a20157593f26c9af4d1d9fe062cbf9c4d3b..51f54839118ef895bb2ba5b5453dc203d36cbc79 100644 (file)
@@ -22,11 +22,11 @@ gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h |#
 (extern (* GdkPixbufLoader) gdk_pixbuf_loader_new)
 
 ;(extern (* GdkPixbufLoader) gdk_pixbuf_loader_new_with_type
-;      (image_type (const (* char)))
+;      (image_type (* (const char)))
 ;      (error (* (* GError))))
 
 ;(extern (* GdkPixbufLoader) gdk_pixbuf_loader_new_with_mime_type
-;      (mime_type (const (* char)))
+;      (mime_type (* (const char)))
 ;      (error (* (* GError))))
 
 ;(extern void gdk_pixbuf_loader_set_size
@@ -36,7 +36,7 @@ gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h |#
 
 (extern gboolean gdk_pixbuf_loader_write
        (loader (* GdkPixbufLoader))
-       (buf (const (* guchar)))
+       (buf (* (const guchar)))
        (count gsize)
        (error (* (* GError))))
 
index 1b61ecb893399a280460962f5d8458e54541138e..8c4df8b29254580db265fec3271f8c7f610cf6a5 100644 (file)
@@ -14,10 +14,10 @@ gtk-2.0/gdk/gdkcairo.h |#
 
 #;(extern void gdk_cairo_set_source_color
        (cr (* cairo_t))
-       (color (const (* GdkColor))))
+       (color (* (const GdkColor))))
 #;(extern void gdk_cairo_set_source_pixbuf
        (cr (* cairo_t))
-       (pixbuf (const (* GdkPixbuf)))
+       (pixbuf (* (const GdkPixbuf)))
        (pixbuf_x double)
        (pixbuf_y double))
 #;(extern void gdk_cairo_set_source_pixmap
@@ -28,7 +28,7 @@ gtk-2.0/gdk/gdkcairo.h |#
 
 #;(extern void gdk_cairo_rectangle
        (cr (* cairo_t))
-       (rectangle (const (* GdkRectangle))))
+       (rectangle (* (const GdkRectangle))))
 #;(extern void gdk_cairo_region
        (cr (* cairo_t))
-       (region (const (* GdkRegion))))
\ No newline at end of file
+       (region (* (const GdkRegion))))
\ No newline at end of file
index e7af670f398b5d570fc5ad8a9c57c9844412eeee..7dadf5b4d30bf5cc789624177296dcf47c4d994d 100644 (file)
@@ -50,14 +50,14 @@ gtk-2.0/gdk/gdkcolor.h |#
 ;(extern (* GdkVisual) gdk_colormap_get_visual
 ;      (colormap (* GdkColormap)))
 ;(extern (* GdkColor) gdk_color_copy
-;      (color (const (* GdkColor))))
+;      (color (* (const GdkColor))))
 ;(extern void gdk_color_free
 ;      (color (* GdkColor)))
 (extern gint gdk_color_parse
-       (spec (const (* gchar)))
+       (spec (* (const gchar)))
        (color (* GdkColor)))
 ;(extern guint gdk_color_hash
-;      (colora (const (* GdkColor))))
+;      (colora (* (const GdkColor))))
 ;(extern gboolean gdk_color_equal
-;      (colora (const (* GdkColor)))
-;      (colorb (const (* GdkColor))))
\ No newline at end of file
+;      (colora (* (const GdkColor)))
+;      (colorb (* (const GdkColor))))
\ No newline at end of file
index da0968e0d6f50d2c663aa18a4475c8337ed8362e..94c44fdb1abd484ebd5d2767b66957141de2ab81 100644 (file)
@@ -22,14 +22,14 @@ gtk-2.0/gdk/gdkfont.h |#
 (extern void gdk_font_unref
        ((* GdkFont) font))
 (extern gint gdk_font_id
-       (font (const (* GdkFont))))
+       (font (* (const GdkFont))))
 (extern gboolean gdk_font_equal
-       (fonta (const (* GdkFont)))
-       (fontb (const (* GdkFont))))
+       (fonta (* (const GdkFont)))
+       (fontb (* (const GdkFont))))
 
 (extern (* GdkFont) gdk_font_load_for_display
        (display (* GdkDisplay))
-       (font_name (const (* gchar))))
+       (font_name (* (const gchar))))
 (extern (* GdkFont) gdk_fontset_load_for_display
        (GdkDisplay           *display)
        (const gchar          *fontset_name))
index 308ae31af9206c1195054c6c0a8c5a2e6612b026..85cf21d183c32f30f56cf3d20d24992a0b4a46d9 100644 (file)
@@ -144,10 +144,10 @@ gtk-2.0/gdk/gdkgc.h |#
 ;      (values_mask GdkGCValuesMask))
 ;(extern void gdk_gc_set_foreground
 ;      (gc (* GdkGC))
-;      (color (const (* GdkColor))))
+;      (color (* (const GdkColor))))
 ;(extern void gdk_gc_set_background
 ;      (gc (* GdkGC))
-;      (color (const (* GdkColor))))
+;      (color (* (const GdkColor))))
 ;(extern void gdk_gc_set_function
 ;      (gc (* GdkGC))
 ;      (function GdkFunction))
@@ -207,9 +207,9 @@ gtk-2.0/gdk/gdkgc.h |#
 ;      (gc (* GdkGC)))
 ;(extern void gdk_gc_set_rgb_fg_color
 ;      (gc (* GdkGC))
-;      (color (const (* GdkColor))))
+;      (color (* (const GdkColor))))
 ;(extern void gdk_gc_set_rgb_bg_color
 ;      (gc (* GdkGC))
-;      (color (const (* GdkColor))))
+;      (color (* (const GdkColor))))
 ;(extern (* GdkScreen) gdk_gc_get_screen
 ;      (gc (* GdkGC)))
\ No newline at end of file
index bb8f8d9e7e64761bbe1d11919c40eb01ffe93b67..5a212f49af202d2aaa2244ee64cbb8cd0e02c106 100644 (file)
@@ -27,7 +27,7 @@ gtk-2.0/gdk/gdkkeys.h |#
 ;
 ;(extern guint gdk_keymap_lookup_key
 ;      (keymap (* GdkKeymap))
-;      (key (const (* GdkKeymapKey))))
+;      (key (* (const GdkKeymapKey))))
 ;(extern gboolean gdk_keymap_translate_keyboard_state
 ;      (keymap (* GdkKeymap))
 ;      (hardware_keycode guint)
@@ -51,7 +51,7 @@ gtk-2.0/gdk/gdkkeys.h |#
 ;(extern PangoDirection gdk_keymap_get_direction (keymap (* GdkKeymap)))
 
 (extern (* gchar) gdk_keyval_name (keyval guint))
-;(extern guint gdk_keyval_from_name (keyval_name (const (* gchar))))
+;(extern guint gdk_keyval_from_name (keyval_name (* (const gchar))))
 ;(extern void gdk_keyval_convert_case
 ;      (symbol guint) (lower (* guint)) (upper (* guint)))
 ;(extern guint gdk_keyval_to_upper (keyval guint))
index 79be93b02ee5cf4a3196c1356d97d43401370fc6..cda3da9726f85ced962d7eb05399a2a0c8bde22f 100644 (file)
@@ -192,7 +192,7 @@ gtk-2.0/gdk/gdkwindow.h |#
 
 (extern void gdk_window_set_background
        (window (* GdkWindow))
-       (color (const (* GdkColor))))
+       (color (* (const GdkColor))))
 
 (extern (* GdkWindow) gdk_window_get_pointer
        (window (* GdkWindow))
index 214aa66e8b207fd7ccd7fa0d1b80f8cc37ea5648..ba8a20d03f8bc288316500b7abc9ba0c0e3282a3 100644 (file)
@@ -65,7 +65,7 @@ gtk-2.0/gtk/gtkstyle.h |#
 
 (extern gboolean gtk_style_lookup_color
        (style (* GtkStyle))
-       (color_name (const (* gchar)))
+       (color_name (* (const gchar)))
        (color (* GdkColor)))
 
 #;(extern void gtk_paint_hline
@@ -74,7 +74,7 @@ gtk-2.0/gtk/gtkstyle.h |#
        (state_type GtkStateType)
        (area (* GdkRectangle))
        (widget (* GtkWidget))
-       (detail (const (* gchar)))
+       (detail (* (const gchar)))
        (x1 gint)
        (x2 gint)
        (y gint))
@@ -85,7 +85,7 @@ gtk-2.0/gtk/gtkstyle.h |#
        (state_type GtkStateType)
        (area (* GdkRectangle))
        (widget (* GtkWidget))
-       (detail (const (* gchar)))
+       (detail (* (const gchar)))
        (y1_ gint)
        (y2_ gint)
        (x gint))
@@ -97,7 +97,7 @@ gtk-2.0/gtk/gtkstyle.h |#
        (shadow_type GtkShadowType)
        (area (* GdkRectangle))
        (widget (* GtkWidget))
-       (detail (const (* gchar)))
+       (detail (* (const gchar)))
        (x gint)
        (y gint)
        (width gint)
@@ -109,7 +109,7 @@ gtk-2.0/gtk/gtkstyle.h |#
        (state_type GtkStateType)
        (area (* GdkRectangle))
        (widget (* GtkWidget))
-       (detail (const (* gchar)))
+       (detail (* (const gchar)))
        (x gint) (y gint)
        (width gint) (height gint))
 
@@ -120,6 +120,6 @@ gtk-2.0/gtk/gtkstyle.h |#
        (use_text gboolean)
        (area (* GdkRectangle))
        (widget (* GtkWidget))
-       (detail (const (* gchar)))
+       (detail (* (const gchar)))
        (x gint) (y gint)
        (layout (* PangoLayout)))
\ No newline at end of file
index e39b7fb14ffb55a5908c5eb10867c58f97768190..c94a0505412fc25226d64b2605ba5be7308ee3da 100644 (file)
@@ -370,4 +370,4 @@ gtk-2.0/gtk/gtkwidget.h |#
 (extern (* PangoLayout)
        gtk_widget_create_pango_layout
        (widget (* GtkWidget))
-       (text (const (* gchar))))
\ No newline at end of file
+       (text (* (const gchar))))
\ No newline at end of file
index c7697aecfa4c9270b88b89c34f84a53b9cf77699..79bc9b50cbff0bcf2af1a11f670ab8868e13a63b 100644 (file)
@@ -19,18 +19,18 @@ pango-1.0/pango/pango-context.h |#
 ;(extern (* PangoFont)
 ;      pango_context_load_font
 ;      (context (* PangoContext))
-;      (desc (const (* PangoFontDescription))))
+;      (desc (* (const PangoFontDescription))))
 
 ;(extern (* PangoFontset)
 ;      pango_context_load_fontset
 ;      (context (* PangoContext))
-;      (desc (const (* PangoFontDescription)))
+;      (desc (* (const PangoFontDescription)))
 ;      (language (* PangoLanguage)))
 
 (extern (* PangoFontMetrics)
        pango_context_get_metrics
        (context (* PangoContext))
-       (desc (const (* PangoFontDescription)))
+       (desc (* (const PangoFontDescription)))
        (language (* PangoLanguage)))
 
 (extern (* PangoFontDescription)
@@ -40,7 +40,7 @@ pango-1.0/pango/pango-context.h |#
 (extern void
        pango_context_set_font_description
        (context (* PangoContext))
-       (desc (const (* PangoFontDescription))))
+       (desc (* (const PangoFontDescription))))
 
 (extern (* PangoLanguage)
        pango_context_get_language
@@ -63,16 +63,16 @@ pango-1.0/pango/pango-context.h |#
 ;(extern void
 ;      pango_context_set_matrix
 ;      (context (* PangoContext))
-;      (matrix (const (* PangoMatrix))))
+;      (matrix (* (const PangoMatrix))))
 
-;(extern (const (* PangoMatrix))
+;(extern (* (const PangoMatrix))
 ;      pango_context_get_matrix
 ;      (context (* PangoContext)))
 
 ;(extern (* GList)
 ;      pango_itemize
 ;      (context (* PangoContext))
-;      (text (const (* char)))
+;      (text (* (const char)))
 ;      (start_index int)
 ;      (length int)
 ;      (attrs (* PangoAttrList))
@@ -82,7 +82,7 @@ pango-1.0/pango/pango-context.h |#
 ;      pango_itemize_with_base_dir
 ;      (context (* PangoContext))
 ;      (base_dir PangoDirection)
-;      (text (const (* char)))
+;      (text (* (const char)))
 ;      (start_index int)
 ;      (length int)
 ;      (attrs (* PangoAttrList))
index 597d8297ab66a313934e2d09c86300797eb5dc31..587f34f7e61b5fbf4e3e6748cf3cba45374ad15c 100644 (file)
@@ -90,7 +90,7 @@ pango-1.0/pango/pango-font.h |#
        (faces (* (* (* PangoFontFace))))
        (n_faces (* int)))
 
-(extern (const (* char))
+(extern (* (const char))
        pango_font_family_get_name
        (family (* PangoFontFamily)))
 
@@ -98,6 +98,6 @@ pango-1.0/pango/pango-font.h |#
        pango_font_family_is_monospace
        (family (* PangoFontFamily)))
 
-(extern (const (* char))
+(extern (* (const char))
        pango_font_face_get_face_name
        (face (* PangoFontFace)))
\ No newline at end of file
index 7f4b404c9aa986cf2981a8840fffd0413aad994f..823e80135bc1fea694400bc89509d08c6ace2896 100644 (file)
@@ -15,14 +15,14 @@ pango-1.0/pango/pango-layout.h |#
 
 (extern void pango_layout_set_text
        (layout (* PangoLayout))
-       (text (const (* char)))
+       (text (* (const char)))
        (length int))
 
 (extern void pango_layout_set_font_description
        (layout (* PangoLayout))
-       (desc (const (* PangoFontDescription))))
+       (desc (* (const PangoFontDescription))))
 
-(extern (const (* PangoFontDescription))
+(extern (* (const PangoFontDescription))
        pango_layout_get_font_description
        (layout (* PangoLayout)))