mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Call pango_x[ft]_shutdown_display().
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose): Call pango_x[ft]_shutdown_display().
This commit is contained in:
parent
184a45caff
commit
64e8303a79
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Fri Aug 2 12:21:41 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (gdk_screen_x11_dispose):
|
||||
Call pango_x[ft]_shutdown_display().
|
||||
|
||||
2002-08-02 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/gdkscreen-x11.c (check_xfree_xinerama): declare
|
||||
|
@ -21,6 +21,7 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <glib.h>
|
||||
#include "gdkscreen.h"
|
||||
#include "gdkscreen-x11.h"
|
||||
@ -28,6 +29,11 @@
|
||||
#include "gdkdisplay-x11.h"
|
||||
#include "gdkx.h"
|
||||
|
||||
#ifdef HAVE_XFT
|
||||
#include <pango/pangoxft.h>
|
||||
#endif
|
||||
#include <pango/pangox.h>
|
||||
|
||||
#ifdef HAVE_SOLARIS_XINERAMA
|
||||
#include <X11/extensions/xinerama.h>
|
||||
#endif
|
||||
@ -232,6 +238,10 @@ gdk_screen_x11_dispose (GObject *object)
|
||||
{
|
||||
GdkScreenX11 *screen_x11 = GDK_SCREEN_X11 (object);
|
||||
|
||||
pango_x_shutdown_display (screen_x11->xdisplay, screen_x11->xscreen);
|
||||
#ifdef HAVE_XFT
|
||||
pango_xft_shutdown_display (screen_x11->xdisplay, screen_x11->xscreen);
|
||||
#endif
|
||||
_gdk_x11_events_uninit_screen (GDK_SCREEN (object));
|
||||
|
||||
screen_x11->root_window = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user