Fix frame_right/frame_top screwup. (Detlef Reichl, #78111)

Tue May 14 18:02:37 2002  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkwindow.c (gtk_window_realize): Fix
        frame_right/frame_top screwup. (Detlef Reichl,
        #78111)

        * gtk/Makefile.am (install-data-local): Use
        $(INSTALL_DATA) not $(INSTALL) when installing
        theme files. (#77094, Ben Liblit)
This commit is contained in:
Owen Taylor 2002-05-14 22:04:45 +00:00 committed by Owen Taylor
parent f47470a9ef
commit 7359bb9df8
8 changed files with 64 additions and 4 deletions

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -1,3 +1,13 @@
Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_realize): Fix
frame_right/frame_top screwup. (Detlef Reichl,
#78111)
* gtk/Makefile.am (install-data-local): Use
$(INSTALL_DATA) not $(INSTALL) when installing
theme files. (#77094, Ben Liblit)
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of

View File

@ -565,11 +565,11 @@ endif
# Install a RC file for the default GTK+ theme, and key themes
install-data-local: install-ms-lib install-libtool-import-lib
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk-2.0
$(INSTALL) $(srcdir)/gtkrc.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc
$(INSTALL_DATA) $(srcdir)/gtkrc.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key
$(INSTALL) $(srcdir)/gtkrc.key.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key/gtkrc
$(INSTALL_DATA) $(srcdir)/gtkrc.key.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key/gtkrc
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key
$(INSTALL) $(srcdir)/gtkrc.key.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key/gtkrc
$(INSTALL_DATA) $(srcdir)/gtkrc.key.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key/gtkrc
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
rm -f $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc

View File

@ -3307,7 +3307,7 @@ gtk_window_realize (GtkWidget *widget)
attributes.window_type = GDK_WINDOW_CHILD;
attributes.x = window->frame_left;
attributes.y = window->frame_right;
attributes.y = window->frame_top;
attributes_mask = GDK_WA_X | GDK_WA_Y;