[gtk+/gtk-2-90: 69/127] Remove deprecated code from GdkGc



commit 8410b0d5cff24d9d31a42c8caa15638d59fdc642
Author: Javier Jardón <javierjc1982 gmail com>
Date:   Fri Oct 9 17:00:20 2009 +0200

    Remove deprecated code from GdkGc

 docs/reference/gdk/gdk-sections.txt |    4 --
 docs/reference/gdk/tmpl/gcs.sgml    |   36 -----------------------
 gdk/gdk.symbols                     |    5 ---
 gdk/gdkgc.c                         |   53 -----------------------------------
 gdk/gdkgc.h                         |   12 --------
 5 files changed, 0 insertions(+), 110 deletions(-)
---
diff --git a/docs/reference/gdk/gdk-sections.txt b/docs/reference/gdk/gdk-sections.txt
index f4aa42a..0b565b4 100644
--- a/docs/reference/gdk/gdk-sections.txt
+++ b/docs/reference/gdk/gdk-sections.txt
@@ -521,16 +521,12 @@ GdkFunction
 gdk_gc_new
 gdk_gc_new_with_values
 gdk_gc_get_screen
-gdk_gc_ref
-gdk_gc_unref
-gdk_gc_destroy
 gdk_gc_set_values
 gdk_gc_get_values
 gdk_gc_set_foreground
 gdk_gc_set_background
 gdk_gc_set_rgb_fg_color
 gdk_gc_set_rgb_bg_color
-gdk_gc_set_font
 gdk_gc_set_function
 gdk_gc_set_fill
 GdkFill
diff --git a/docs/reference/gdk/tmpl/gcs.sgml b/docs/reference/gdk/tmpl/gcs.sgml
index f5a16d3..7d445ed 100644
--- a/docs/reference/gdk/tmpl/gcs.sgml
+++ b/docs/reference/gdk/tmpl/gcs.sgml
@@ -148,33 +148,6 @@ useful. For bitmaps, %GDK_AND and %GDK_OR are also useful.
 @Returns: 
 
 
-<!-- ##### FUNCTION gdk_gc_ref ##### -->
-<para>
-
-</para>
-
- gc: 
- Returns: 
-
-
-<!-- ##### FUNCTION gdk_gc_unref ##### -->
-<para>
-
-</para>
-
- gc: 
-
-
-<!-- ##### MACRO gdk_gc_destroy ##### -->
-<para>
-This function is obsolete and should not be used.
-</para>
-
- Deprecated: Use g_object_unref() instead
-<!-- # Unused Parameters # -->
- gc: a #GdkGC.
-
-
 <!-- ##### FUNCTION gdk_gc_set_values ##### -->
 <para>
 
@@ -230,15 +203,6 @@ This function is obsolete and should not be used.
 @color: 
 
 
-<!-- ##### FUNCTION gdk_gc_set_font ##### -->
-<para>
-
-</para>
-
- gc: 
- font: 
-
-
 <!-- ##### FUNCTION gdk_gc_set_function ##### -->
 <para>
 
diff --git a/gdk/gdk.symbols b/gdk/gdk.symbols
index da937f7..f9e7798 100644
--- a/gdk/gdk.symbols
+++ b/gdk/gdk.symbols
@@ -588,11 +588,6 @@ gdk_draw_layout_with_colors
 gdk_gc_new
 gdk_gc_get_type G_GNUC_CONST
 gdk_gc_new_with_values
-#ifndef GDK_DISABLE_DEPRECATED
-gdk_gc_ref
-gdk_gc_unref
-gdk_gc_set_font
-#endif
 gdk_gc_get_values
 gdk_gc_set_values
 gdk_gc_set_foreground
diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c
index 67da9a5..7dd9d61 100644
--- a/gdk/gdkgc.c
+++ b/gdk/gdkgc.c
@@ -223,36 +223,6 @@ gdk_gc_finalize (GObject *object)
 }
 
 /**
- * gdk_gc_ref:
- * @gc: a #GdkGC
- *
- * Deprecated function; use g_object_ref() instead.
- *
- * Return value: the gc.
- *
- * Deprecated: 2.0: Use g_object_ref() instead.
- **/
-GdkGC *
-gdk_gc_ref (GdkGC *gc)
-{
-  return (GdkGC *) g_object_ref (gc);
-}
-
-/**
- * gdk_gc_unref:
- * @gc: a #GdkGC
- *
- * Decrement the reference count of @gc.
- *
- * Deprecated: 2.0: Use g_object_unref() instead.
- **/
-void
-gdk_gc_unref (GdkGC *gc)
-{
-  g_object_unref (gc);
-}
-
-/**
  * gdk_gc_get_values:
  * @gc:  a #GdkGC.
  * @values: the #GdkGCValues structure in which to store the results.
@@ -410,29 +380,6 @@ gdk_gc_set_background (GdkGC	      *gc,
 }
 
 /**
- * gdk_gc_set_font:
- * @gc: a #GdkGC.
- * @font: the new font. 
- * 
- * Sets the font for a graphics context. (Note that
- * all text-drawing functions in GDK take a @font
- * argument; the value set here is used when that
- * argument is %NULL.)
- **/
-void
-gdk_gc_set_font (GdkGC	 *gc,
-		 GdkFont *font)
-{
-  GdkGCValues values;
-
-  g_return_if_fail (GDK_IS_GC (gc));
-  g_return_if_fail (font != NULL);
-
-  values.font = font;
-  gdk_gc_set_values (gc, &values, GDK_GC_FONT);
-}
-
-/**
  * gdk_gc_set_function:
  * @gc: a #GdkGC.
  * @function: the #GdkFunction to use
diff --git a/gdk/gdkgc.h b/gdk/gdkgc.h
index c64d2af..8681faa 100644
--- a/gdk/gdkgc.h
+++ b/gdk/gdkgc.h
@@ -226,11 +226,6 @@ GdkGC *gdk_gc_new_with_values	  (GdkDrawable	    *drawable,
 				   GdkGCValues	    *values,
 				   GdkGCValuesMask   values_mask);
 
-#ifndef GDK_DISABLE_DEPRECATED
-GdkGC *gdk_gc_ref		  (GdkGC	    *gc);
-void   gdk_gc_unref		  (GdkGC	    *gc);
-#endif
-
 void   gdk_gc_get_values	  (GdkGC	    *gc,
 				   GdkGCValues	    *values);
 void   gdk_gc_set_values          (GdkGC           *gc,
@@ -240,10 +235,6 @@ void   gdk_gc_set_foreground	  (GdkGC	    *gc,
 				   const GdkColor   *color);
 void   gdk_gc_set_background	  (GdkGC	    *gc,
 				   const GdkColor   *color);
-#ifndef GDK_DISABLE_DEPRECATED
-void   gdk_gc_set_font		  (GdkGC	    *gc,
-				   GdkFont	    *font);
-#endif /* GDK_DISABLE_DEPRECATED */
 void   gdk_gc_set_function	  (GdkGC	    *gc,
 				   GdkFunction	     function);
 void   gdk_gc_set_fill		  (GdkGC	    *gc,
@@ -293,9 +284,6 @@ void         gdk_gc_set_rgb_bg_color (GdkGC          *gc,
 				      const GdkColor *color);
 GdkScreen *  gdk_gc_get_screen	     (GdkGC          *gc);
 
-#ifndef GDK_DISABLE_DEPRECATED
-#define gdk_gc_destroy                 g_object_unref
-#endif /* GDK_DISABLE_DEPRECATED */
 
 G_END_DECLS
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]