Deprecation cleanup
Sun Oct 13 13:43:16 2002 Manish Singh <yosh@gimp.org> * gtk/gtkcurve.[ch] gtk/gtkgamma.[ch] gtk/gtklayout.[ch] gtk/gtkwidget.[ch] modules/input/gtkimcontextxim.c modules/input/imam-et.c modules/input/imcyrillic-translit.c modules/input/imhangul.c modules/input/iminuktitut.c modules/input/imipa.c modules/input/imthai-broken.c modules/input/imti-er.c modules/input/imti-et.c modules/input/imviqr.c: Deprecation cleanup * modules/input/Makefile.am: Added disable deprecation flags
This commit is contained in:

committed by
Manish Singh

parent
c77265d3a7
commit
aa54cfeede
@ -9,6 +9,10 @@ INCLUDES = @STRIP_BEGIN@ \
|
||||
-I$(top_srcdir)/gdk \
|
||||
-I$(top_builddir)/gdk \
|
||||
-DGTK_LOCALEDIR=\"$(gtklocaledir)\" \
|
||||
-DG_DISABLE_DEPRECATED \
|
||||
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
||||
-DGDK_DISABLE_DEPRECATED \
|
||||
-DGTK_DISABLE_DEPRECATED \
|
||||
@GTK_DEBUG_FLAGS@ \
|
||||
@GTK_XIM_FLAGS@ \
|
||||
@GTK_DEP_CFLAGS@ \
|
||||
|
@ -105,7 +105,7 @@ gtk_im_context_xim_register_type (GTypeModule *type_module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextXIM),
|
||||
0,
|
||||
(GtkObjectInitFunc) gtk_im_context_xim_init,
|
||||
(GInstanceInitFunc) gtk_im_context_xim_init,
|
||||
};
|
||||
|
||||
gtk_type_im_context_xim =
|
||||
@ -1223,7 +1223,7 @@ status_window_get (GtkIMContextXIM *context_xim,
|
||||
|
||||
window = status_window->window;
|
||||
|
||||
gtk_window_set_policy (GTK_WINDOW (window), FALSE, FALSE, FALSE);
|
||||
gtk_window_set_resizable (GTK_WINDOW (status_window), FALSE);
|
||||
gtk_widget_set_app_paintable (window, TRUE);
|
||||
|
||||
status_label = gtk_label_new ("");
|
||||
|
@ -25,6 +25,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
@ -33,8 +34,6 @@
|
||||
#include "gtk/gtkimcontextsimple.h"
|
||||
#include "gtk/gtkimmodule.h"
|
||||
|
||||
#include<stdio.h>
|
||||
|
||||
GType type_am_et_translit = 0;
|
||||
|
||||
static void am_et_class_init (GtkIMContextSimpleClass *class);
|
||||
@ -53,7 +52,7 @@ am_et_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) am_et_init,
|
||||
(GInstanceInitFunc) am_et_init,
|
||||
};
|
||||
|
||||
type_am_et_translit =
|
||||
|
@ -46,7 +46,7 @@ cyrillic_translit_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) cyrillic_translit_init,
|
||||
(GInstanceInitFunc) cyrillic_translit_init,
|
||||
};
|
||||
|
||||
type_cyrillic_translit =
|
||||
|
@ -49,7 +49,7 @@ hangul_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) hangul_init,
|
||||
(GInstanceInitFunc) hangul_init,
|
||||
};
|
||||
|
||||
type_hangul =
|
||||
|
@ -49,7 +49,7 @@ inuktitut_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) inuktitut_init,
|
||||
(GInstanceInitFunc) inuktitut_init,
|
||||
};
|
||||
|
||||
type_inuktitut_translit =
|
||||
|
@ -46,7 +46,7 @@ ipa_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) ipa_init,
|
||||
(GInstanceInitFunc) ipa_init,
|
||||
};
|
||||
|
||||
type_ipa =
|
||||
|
@ -49,7 +49,7 @@ thai_broken_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) thai_broken_init,
|
||||
(GInstanceInitFunc) thai_broken_init,
|
||||
};
|
||||
|
||||
type_thai_broken =
|
||||
|
@ -25,6 +25,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
@ -33,8 +34,6 @@
|
||||
#include "gtk/gtkimcontextsimple.h"
|
||||
#include "gtk/gtkimmodule.h"
|
||||
|
||||
#include<stdio.h>
|
||||
|
||||
GType type_ti_er_translit = 0;
|
||||
|
||||
static void ti_er_class_init (GtkIMContextSimpleClass *class);
|
||||
@ -53,7 +52,7 @@ ti_er_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) ti_er_init,
|
||||
(GInstanceInitFunc) ti_er_init,
|
||||
};
|
||||
|
||||
type_ti_er_translit =
|
||||
|
@ -25,6 +25,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
@ -33,8 +34,6 @@
|
||||
#include "gtk/gtkimcontextsimple.h"
|
||||
#include "gtk/gtkimmodule.h"
|
||||
|
||||
#include<stdio.h>
|
||||
|
||||
GType type_ti_et_translit = 0;
|
||||
|
||||
static void ti_et_class_init (GtkIMContextSimpleClass *class);
|
||||
@ -53,7 +52,7 @@ ti_et_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) ti_et_init,
|
||||
(GInstanceInitFunc) ti_et_init,
|
||||
};
|
||||
|
||||
type_ti_et_translit =
|
||||
|
@ -49,7 +49,7 @@ viqr_register_type (GTypeModule *module)
|
||||
NULL, /* class_data */
|
||||
sizeof (GtkIMContextSimple),
|
||||
0,
|
||||
(GtkObjectInitFunc) viqr_init,
|
||||
(GInstanceInitFunc) viqr_init,
|
||||
};
|
||||
|
||||
type_viqr_translit =
|
||||
|
Reference in New Issue
Block a user