]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
don't use the deprecated gtk_box_pack_start_defaults().
[~andy/gtk] / ChangeLog
index 08952c52566ea6a199afb406303cd4f1be354be1..ca840dcfae3e94f49bc0b834c66f6647af4bbfb1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,166 @@
+2008-08-05  Michael Natterer  <mitch@imendio.com>
+
+       * tests/testiconview.c: don't use the deprecated
+       gtk_box_pack_start_defaults().
+
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 545982 – missing braces cause bogus warnings when using GtkBuilder
+
+       * gtk/gtkcelllayout.c:
+       * gtk/gtkdialog.c:
+       * gtk/gtkcontainer.c: Add missing braces to some GtkBuildable
+       implementations. Patch by Antti Kaijanmäki
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtktext.c: Cast pointer to gintptr instead of gulong to
+       avoid warning on Win64.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkgc.c: Cast tile, stipple and clip_mask pointers to
+       gintptr instead of long when calculating hash, so we get all of
+       the pointer bits on Win64 where long is 32 bits.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkprintoperation-win32.c: Don't need to declare
+       IPrintDialogCallback with mingw64 either. It seems to be provided
+       with the newer versions of the headers included with mingw64.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
+
+       * gtk/gtksocket-win32.c: Don't cast HWND to guint, pass it as such
+       as the GdkNativeWindow parameter to
+       gtk_window_remove_embedded_xid(). Debugging printout format fixes.
+
+       * gtk/gtkwin32embed.h
+       * gtk/gtkwin32embed.c: Change the types of wparam and lparam
+       parameters to actually be WPARAM and LPARAM.
+
+       * gtk/gtkplug-win32.c: Adapt accordingly.
+
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtksettings.c: Improve a setting nick: 'aureal' is not really
+       a word, use 'audible' instead.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/updateiconcache.c (write_bucket): Enclose ?: expression
+       with parens so cast covers all of it.
+
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 382291 – Automatically dim the combobox when the model is empty
+
+       * gtk/gtk.symbols:
+       * gtkcombobox.[hc]: Add a GtkComboBox::button-sensitivity
+       property with getter and setter to control the sensitity of
+       empty combo boxes. Patch by Carlos Garnacho, Sven Herzberg,
+       Christian Dywan and others.
+
+       * README.in: Add a note about automatic combobox sensitivity.
+       
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/tests/Makefile.am: Skip crossingevents test when
+       running make check, since it doesn't work on a naked
+       X server.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
+
+       * gdk/gdkdnd.h
+       * gdk/gdkdnd.c
+       * gdk/win32/gdkdnd-win32.c
+       * gdk/x11/gdkdnd-x11.c: Change return value and type of window id
+       from guint32 to GdkNativeWindow for
+       gdk_drag_get_protocol_for_display() and
+       gdk_drag_get_protocol(). This is not an API break on existing
+       platforms, as GdkNativeWindow has been guint32 for them
+       already.
+
+       * gdk/gdkselection.h
+       * gdk/gdkselection.c
+       * gdk/win32/gdkselection-win32.c
+       * gdk/x11/gdkselection-x11.c: Ditto for the requestor window id
+       parameter of gdk_selection_send_notify_for_display() and
+       gdk_selection_send_notify().
+
+       * gdk/win32/gdkcursor-win32.c
+       * gdk/win32/xcursors.h: Change some gchar* to guchar* and vice
+       versa to avoid gcc 4.4 signedness warnings.
+
+       * gdk/win32/gdkevents-win32.c
+       * gdk/win32/gdkproperty-win32.c
+       * gdk/win32/gdkselection-win32.c: Add some guchar and char pointer
+       casts to get rid of gcc 4.4 signedness warnings. Print GdkAtom
+       values in debugging output using the %p format.
+       
+       * gdk/win32/gdkkeys-win32.c
+       * gdk/win32/gdkfont-win32.c
+       * gdk/win32/gdkmain-win32.c: Add some casts to avoid gcc warnings.
+       * gdk/win32/gdkwindow-win32.c: Use SetWindowLongPtr() instead of
+       SetWindowLong().
+
+       * gdk/win32/gdkwin32id.c (gdk_handle_hash): Use all 64 bits of a
+       HANDLE on Win64.
+
+       * gtk/gtkwindow.h
+       * gtk/gtkwindow.c: Change the type of the xid parameter of the
+       internal gtk_window_remove_embedded_xid() and
+       gtk_window_add_embedded_xid() functions from guint to
+       GdkNativeWindow.
+
+       * gtk/gtkwindow.c (send_client_message_to_embedded_windows):
+       Instead of GPOINTER_TO_UINT(), just cast the gpointer to
+       GdkNativeWindow. GPOINTER_TO_UINT() drops the upper 32 bits on
+       Win64.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/gdkrgb.c: Cast pointers to guintptr, not unsigned long,
+       before doing bit tests on them.
+
+2008-08-05  Tor Lillqvist  <tml@novell.com>
+
+       * configure.in: Define GDK_NATIVE_WINDOW_POINTER on 32-bit
+       Windows, too. It just makes more sense, as a HWND *is* a kind of
+       pointer.
+
+       * gdk/gdkconfig.h.win32: Ditto here.
+
+2008-08-04  Björn Lindqvist  <bjourne@gmail.com>
+
+       Bug 534979 – GtkImageMenuItem is a bin but has two children.
+
+       * gtk/gtkimagemenuitem.c (gtk_image_menu_item_forall): Do not
+       include the image widget when iterating over non-internal
+       children. Patch by rainwoodman.
+
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       * NEWS: Updates
+
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Bump glib dependency to 2.17.6
+
+2008-08-04  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtkclist.c
+       * gtk/gtkctree.c
+       * gtk/gtkpixmap.c
+       * gtk/gtkpreview.c: get rid of using deprecated GDK APIs.
+
+       * gtk/gtktext.c: ditto, apart from the text cruft APIs.
+
 2008-08-04  Michael Natterer  <mitch@imendio.com>
 
        * gdk/gdk.c (gdk_parse_args): call gdk_rgb_set_verbose(TRUE) if