]> Pileus Git - ~andy/gtk/log
~andy/gtk
14 years agoUpdates
Matthias Clasen [Sat, 29 Aug 2009 17:22:15 +0000 (13:22 -0400)]
Updates

14 years agoMake beeps work again
Matthias Clasen [Sat, 29 Aug 2009 17:06:04 +0000 (13:06 -0400)]
Make beeps work again

Yay, beeps !

14 years agoUpdated Polish translation
Tomasz Dominikowski [Sat, 29 Aug 2009 13:21:45 +0000 (15:21 +0200)]
Updated Polish translation

14 years agoAdd gtk_widget_set_window()
Michael Natterer [Fri, 28 Aug 2009 14:51:48 +0000 (16:51 +0200)]
Add gtk_widget_set_window()

New function as replacement for setting widget->window directly.
Should only be used in GtkWidget::realize().

14 years agoBug 69872 - GTK_WIDGET_SET_FLAGS should be deprecated
Michael Natterer [Fri, 28 Aug 2009 14:27:26 +0000 (16:27 +0200)]
Bug 69872 -  GTK_WIDGET_SET_FLAGS should be deprecated

Add gtk_widget_is_toplevel() for GTK_WIDGET_TOPLEVEL()
and gtk_widget_is_drawable() for GTK_WIDGET_DRAWABLE()

14 years agoUpdated Oriya Translation
Manoj Kumar Giri [Fri, 28 Aug 2009 12:20:41 +0000 (17:50 +0530)]
Updated Oriya Translation

14 years agoUpdated Oriya Translation
Manoj Kumar Giri [Fri, 28 Aug 2009 12:11:59 +0000 (17:41 +0530)]
Updated Oriya Translation

14 years agoMake gtk_tree_view_real_set_cursor() handle non-existing paths
Kristian Rietveld [Fri, 28 Aug 2009 07:53:49 +0000 (09:53 +0200)]
Make gtk_tree_view_real_set_cursor() handle non-existing paths

Such paths (eg. a child node that is collapsed) should be ignored.  This
is fixed by checking the return value of _gtk_tree_view_find_node(),
which returns a partial return value (the parent node) when it returns
TRUE.  Also added a unit test.

14 years agoUpdated Serbian translation
Miloš Popović [Fri, 28 Aug 2009 00:52:14 +0000 (02:52 +0200)]
Updated Serbian translation

14 years agoUpdated Serbian translation
Miloš Popović [Fri, 28 Aug 2009 00:47:28 +0000 (02:47 +0200)]
Updated Serbian translation

14 years agoAdd accessors for sealed member "flippable"
Michael Natterer [Thu, 27 Aug 2009 19:12:32 +0000 (21:12 +0200)]
Add accessors for sealed member "flippable"

One step closer to makes GtkRange properly subclassable, but still
quite some accessors missing.

14 years agomarks_start_element(): initialize "value" to get rid of a compiler warning
Michael Natterer [Thu, 27 Aug 2009 19:11:28 +0000 (21:11 +0200)]
marks_start_element(): initialize "value" to get rid of a compiler warning

14 years agoFix casts in calls to g_utf8_validate()
Michael Natterer [Thu, 27 Aug 2009 19:10:25 +0000 (21:10 +0200)]
Fix casts in calls to g_utf8_validate()

The "end" parameter is (const gchar **), not (const gchar *).

14 years agoUpdated Finnish translation
Tommi Vainikainen [Thu, 27 Aug 2009 19:13:02 +0000 (22:13 +0300)]
Updated Finnish translation

14 years agoBug 543310 - set_enable_tree_lines doesn't work when a cellrenderer...
Kristian Rietveld [Thu, 27 Aug 2009 16:09:17 +0000 (18:09 +0200)]
Bug 543310 -  set_enable_tree_lines doesn't work when a cellrenderer...

Reorder drawing in gtk_tree_view_bin_expose() so that the tree lines are
drawn after the cells have been drawn.  This is because cell-background
is handled in the cell renderer, so the tree lines need to be drawn
after this.

14 years agoBug 588199 - GtkTreeView rendering glitch while using a default ...
Kristian Rietveld [Thu, 27 Aug 2009 15:31:44 +0000 (17:31 +0200)]
Bug 588199 - GtkTreeView rendering glitch while using a default ...

Contrary to what was believed before, do_validate_rows() does need to
queue a normal resize (including a redraw) when it has to.  The redraw
is required because of the size of the tree has changed because new
row(s) have been validated.

14 years agoBug 592883 - Spin cell rendererer problem with double click
Kristian Rietveld [Thu, 27 Aug 2009 14:22:11 +0000 (16:22 +0200)]
Bug 592883 - Spin cell rendererer problem with double click

Block 2BUTTON and 3BUTTON press events using a button press event
handler in GtkCellRendererSpin, so that they won't be eaten and
processed by tree view.

14 years agofix gtk-doc syntax on GtkWidget:double-buffered, so Since gets picked up
Dan Winship [Thu, 27 Aug 2009 14:49:16 +0000 (10:49 -0400)]
fix gtk-doc syntax on GtkWidget:double-buffered, so Since gets picked up

14 years agoAllow x and y to be NULL in gdk_window_get_geometry
Alexander Larsson [Thu, 27 Aug 2009 11:34:00 +0000 (13:34 +0200)]
Allow x and y to be NULL in gdk_window_get_geometry

Fixes a crash reported in bug #593249

14 years agoCorrect generation of broken grabs
Alexander Larsson [Thu, 27 Aug 2009 11:30:20 +0000 (13:30 +0200)]
Correct generation of broken grabs

We send a broken grab when a *parent* gets unmapped, not when
a child gets unmapped!

14 years agoMake sure we only send one grab broken event
Alexander Larsson [Thu, 27 Aug 2009 11:11:04 +0000 (13:11 +0200)]
Make sure we only send one grab broken event

We were incorrectly sending grab broken events in two places which
could cause multiple events for a single grab broken.

14 years agoDocument ownership for return value of gtk_file_chooser_get_file()
Benjamin Otte [Wed, 26 Aug 2009 20:23:21 +0000 (22:23 +0200)]
Document ownership for return value of gtk_file_chooser_get_file()

14 years agoBug 592606 - Activate the default button in a respose-request callback
Benjamin Otte [Fri, 21 Aug 2009 17:02:38 +0000 (19:02 +0200)]
Bug 592606 - Activate the default button in a respose-request callback

Previously the rightmost button with a proper response id was activated,
this is now only done if there is no default button set.

With this patch the right widget gets activated when there are multiple
widgets wth response ids conforming to is_stock_accept_response_id() as
the selected widget is made the new default widget before showing the
overwrite confirmation dialog.

14 years agoDon't unnecessarily set the event mask as that can cause X errors
Alexander Larsson [Wed, 26 Aug 2009 12:53:27 +0000 (14:53 +0200)]
Don't unnecessarily set the event mask as that can cause X errors

For instance, two clients selecting for button events can cause BadAccess.
This fixes bug 592624, where a gdk_window_reparent caused us to re-set
the event mask, breaking the workaround for the mozilla BadAccess bug.

14 years agoPropagate the "send_event" flag for emulated events
Alexander Larsson [Wed, 26 Aug 2009 08:34:15 +0000 (10:34 +0200)]
Propagate the "send_event" flag for emulated events

This fixes bug 593011, where we were getting a bogus time on sent events
and the gnome-panel specifically looked for this and worked around it.

14 years agoUpdated Asturian translation
Mikel González [Wed, 26 Aug 2009 08:14:22 +0000 (10:14 +0200)]
Updated Asturian translation

14 years agoUpdated Basque language
Inaki Larranaga Murgoitio [Wed, 26 Aug 2009 08:15:35 +0000 (10:15 +0200)]
Updated Basque language

14 years agohindi updated by Rajesh Ranjan
Rajesh Ranjan [Wed, 26 Aug 2009 06:22:58 +0000 (11:52 +0530)]
hindi updated by Rajesh Ranjan

14 years agohindi updated by Rajesh Ranjan
Rajesh Ranjan [Wed, 26 Aug 2009 06:21:44 +0000 (11:51 +0530)]
hindi updated by Rajesh Ranjan

14 years agoFix cairo clipping to client side windows
Alexander Larsson [Tue, 25 Aug 2009 13:43:52 +0000 (15:43 +0200)]
Fix cairo clipping to client side windows

When updating the clip region on cairo context (due to window changes or
paints of different sizes) we reset the old clip region, but this was
erronously done inside a cairo_save/cairo_restore pair, which made the
reset not take effect.

This fixes bug #592263.

14 years agoBug 592901 - Crash in JPEG pixbuf loader instead of error
Christian Dywan [Tue, 25 Aug 2009 09:58:30 +0000 (11:58 +0200)]
Bug 592901 - Crash in JPEG pixbuf loader instead of error

Initialize the error structure early enough to ensure that it
propagates properly in the case of an error. Patch by Nokia.

14 years agoUpdated Tamil Translations
ifelix [Tue, 25 Aug 2009 08:45:42 +0000 (14:15 +0530)]
Updated Tamil Translations

14 years agoUpdated Tamil Translations
ifelix [Tue, 25 Aug 2009 08:44:45 +0000 (14:14 +0530)]
Updated Tamil Translations

14 years agoClean up gdk_draw_drawable() composite handling
Alexander Larsson [Tue, 25 Aug 2009 08:34:10 +0000 (10:34 +0200)]
Clean up gdk_draw_drawable() composite handling

Instead of doing some magic in gdk_draw_drawable() to avoid double
offsetting when calling gdk_draw_drawable on the impl we call
the vfunc directly on the impl. Thus removing the weird magic from
gdk_draw_drawable().

I tested this with the testgtk test "text", where if the original magic
code is disabled typing a newline in the middle of a text line causes
the double offset issue to appear.

14 years agoFix clipping issue with clip masks
Alexander Larsson [Tue, 25 Aug 2009 08:16:39 +0000 (10:16 +0200)]
Fix clipping issue with clip masks

When the clip mask is completely inside the drawable clip region we
don't change the clip at all. However, we did set region_tag_applied,
so when the drawable clip was removed we removed the original clip mask.
This is no good, so we fix that by returning early in this case.

Fixes issue reported in bug #592752.

14 years agoFix clipping of drawn pixbufs in the no-render case
Alexander Larsson [Tue, 25 Aug 2009 06:57:10 +0000 (08:57 +0200)]
Fix clipping of drawn pixbufs in the no-render case

The fallback pixbuf rendering case ends up calling gdk_draw_image() on the
destination drawable wrapper, which resets the previously set clip region.
So, we need to manually get the impl and draw on that directly.

This fixes bug 592752 where we don't clip pixbuf rendering on non-render
Xservers.

14 years agoBump version
Matthias Clasen [Mon, 24 Aug 2009 23:45:14 +0000 (19:45 -0400)]
Bump version

14 years ago2.17.9
Matthias Clasen [Mon, 24 Aug 2009 22:54:51 +0000 (18:54 -0400)]
2.17.9

14 years agoDocumentation fixes
Matthias Clasen [Mon, 24 Aug 2009 22:17:54 +0000 (18:17 -0400)]
Documentation fixes

14 years ago Updates
Matthias Clasen [Mon, 24 Aug 2009 20:31:46 +0000 (16:31 -0400)]
 Updates

14 years agoDocument GDK_NATIVE_WINDOWS
Matthias Clasen [Mon, 24 Aug 2009 14:37:46 +0000 (10:37 -0400)]
Document GDK_NATIVE_WINDOWS

Add a section in the release notes about it and list it
in the docs with all the other environment variables.

14 years agoMinor fix to Catalan translation
Gil Forcada [Mon, 24 Aug 2009 18:16:29 +0000 (20:16 +0200)]
Minor fix to Catalan translation

14 years agoUpdated Catalan (Valencian) translation
Carles Ferrando [Mon, 24 Aug 2009 18:16:02 +0000 (20:16 +0200)]
Updated Catalan (Valencian) translation

14 years agoMinor fix to Catalan translation
Gil Forcada [Mon, 24 Aug 2009 18:09:26 +0000 (20:09 +0200)]
Minor fix to Catalan translation

14 years agoUpdated Catalan (Valencian) translation
Carles Ferrando [Mon, 24 Aug 2009 18:06:44 +0000 (20:06 +0200)]
Updated Catalan (Valencian) translation

14 years agoPreserve errno, and always use g_strerror()
Christian Persch [Thu, 20 Aug 2009 13:32:22 +0000 (15:32 +0200)]
Preserve errno, and always use g_strerror()

Bug #592461.

14 years agoAdd support for enabling only native windows
Alexander Larsson [Mon, 24 Aug 2009 13:18:10 +0000 (15:18 +0200)]
Add support for enabling only native windows

Some applications make weird assumtions on Gtk+ that do not work anymore
with the new client-side windows support. For instance SWT/Eclipse reorders
the stacking order of the X windows directly without telling gdk this,
which breaks gdk drawing as gdk now relies on knowing the stacking order
for window clipping.

This introduces a GDK_NATIVE_WINDOWS environment variable, which if set
causes Gtk+ to always use native windows. Its more compatible with
pre-csw Gtk+ behaviour if you do weird X-specific hacks, although it does
limit the size of GdkWindows to 65535x65535.

14 years agoUpdated breton translation
Denis Arnaud [Mon, 24 Aug 2009 10:42:14 +0000 (12:42 +0200)]
Updated breton translation

14 years agoUpdated Gujarati Translations
Sweta Kothari [Mon, 24 Aug 2009 09:25:18 +0000 (14:55 +0530)]
Updated Gujarati Translations

14 years agoUpdate README.win32
Tor Lillqvist [Mon, 24 Aug 2009 07:08:53 +0000 (10:08 +0300)]
Update README.win32

14 years agoUpdated Portuguese translation
Duarte Loreto [Sun, 23 Aug 2009 22:36:39 +0000 (23:36 +0100)]
Updated Portuguese translation

14 years agoUpdated Portuguese translation
Duarte Loreto [Sun, 23 Aug 2009 22:21:56 +0000 (23:21 +0100)]
Updated Portuguese translation

14 years agoUpdated Bengali translation
Jamil Ahmed [Sun, 23 Aug 2009 20:40:03 +0000 (03:40 +0700)]
Updated Bengali translation

14 years agoRemove broken logic in backwards walks in validate_visible_area()
Kristian Rietveld [Sun, 23 Aug 2009 20:01:39 +0000 (22:01 +0200)]
Remove broken logic in backwards walks in validate_visible_area()

In validate_visible_area() it was assumed that gtk_tree_path_prev()
would always return the correct path of the preceding node.  This is
obviously not true.  The if-clause has been removed so that we now
always use _gtk_tree_view_find_path() to get the path from the tree,
node.

14 years agoAdd a scrolling test case involving creating new rows in tree stores
Kristian Rietveld [Sun, 23 Aug 2009 19:44:58 +0000 (21:44 +0200)]
Add a scrolling test case involving creating new rows in tree stores

Based on a bug report from Miroslav Rajcic, details are in the tree view
scrolling suite source code.

14 years agoRework naming of tests to make better use of path matching feature
Kristian Rietveld [Sun, 23 Aug 2009 19:13:38 +0000 (21:13 +0200)]
Rework naming of tests to make better use of path matching feature

14 years agoChange prefix of tree view scrolling tests into TreeView
Kristian Rietveld [Sun, 23 Aug 2009 19:06:29 +0000 (21:06 +0200)]
Change prefix of tree view scrolling tests into TreeView

14 years agoClean up code in gtk_tree_store_set_n_columns()
Kristian Rietveld [Sun, 23 Aug 2009 13:29:11 +0000 (15:29 +0200)]
Clean up code in gtk_tree_store_set_n_columns()

Clean up GtkTreeStore likewise as Benjamin Otte has done for
GtkListStore in commit 3c97f037.

14 years agoBug 528283 - Problems when using PageUp & PageDown to navigate...
Kristian Rietveld [Sun, 23 Aug 2009 10:21:53 +0000 (12:21 +0200)]
Bug 528283 - Problems when using PageUp & PageDown to navigate...

Patch from Jonathan Matthew to make focus grabbing of page up/down,
home/end and left/right movements consistent with up/down.

14 years agoUpdated Swedish translation
Daniel Nylander [Sun, 23 Aug 2009 18:08:35 +0000 (20:08 +0200)]
Updated Swedish translation

14 years agoUpdating Estonian translation
Ivar Smolin [Sun, 23 Aug 2009 16:41:38 +0000 (19:41 +0300)]
Updating Estonian translation

14 years agoBug 526149 - GtkCellRendererAccel editing conflicts with mnemonics
Kristian Rietveld [Sun, 23 Aug 2009 06:59:34 +0000 (08:59 +0200)]
Bug 526149 - GtkCellRendererAccel editing conflicts with mnemonics

GtkCellRendererAccel also needs to acquire the GTK+ grab in addition to
a GDK keyboard grab.  With the GDK keyboard grab, KeyPress and
KeyRelease events are delivered as usual, although we only want to
receive them for our grab widget.

14 years agoBug 478519 - GtkTooltip segfaults on NULL gdk-display-current-tooltip
Kristian Rietveld [Sat, 22 Aug 2009 21:21:44 +0000 (23:21 +0200)]
Bug 478519 -  GtkTooltip segfaults on NULL gdk-display-current-tooltip

Make the tooltip code a bit more robust for a case that only occurs when
GTK+ is used from a language binding.  It looks like this case appears
because the memory management / ref counting is handled differently in
some of the language bindings.  Instead of asserting, we will fail
silently.  Also fix a think-o in gtk_tooltip_start_delay().  Patch from
O. Andrieu.

14 years agoUpdate Korean translation
Changwoo Ryu [Sat, 22 Aug 2009 16:32:31 +0000 (01:32 +0900)]
Update Korean translation

14 years agoUpdated Thai translation.
Theppitak Karoonboonyanan [Sat, 22 Aug 2009 16:07:00 +0000 (23:07 +0700)]
Updated Thai translation.

14 years agoUpdated Bulgarian translation
Alexander Shopov [Sat, 22 Aug 2009 16:04:13 +0000 (19:04 +0300)]
Updated Bulgarian translation

14 years agoUpdated Spanish translation
Jorge González [Sat, 22 Aug 2009 10:11:53 +0000 (12:11 +0200)]
Updated Spanish translation

14 years agoUpdating Punjabi Translation Update
A S Alam [Sat, 22 Aug 2009 02:04:04 +0000 (07:34 +0530)]
Updating Punjabi Translation Update

14 years agoUpdating Punjabi Translation Update
A S Alam [Sat, 22 Aug 2009 01:51:13 +0000 (07:21 +0530)]
Updating Punjabi Translation Update

14 years agoAdded Punjabi (Gurmukhi) Translaiton) by A S Alam
A S Alam [Sat, 22 Aug 2009 01:49:38 +0000 (07:19 +0530)]
Added Punjabi (Gurmukhi) Translaiton) by A S Alam

14 years agoAdded Norwegian bokmål translation.
Kjartan Maraas [Fri, 21 Aug 2009 11:41:16 +0000 (13:41 +0200)]
Added Norwegian bokmål translation.

14 years agoReturn state_set directly if there is no parent.
Li Yuan [Fri, 21 Aug 2009 07:29:51 +0000 (15:29 +0800)]
Return state_set directly if there is no parent.

Bug #592403. Return state_set directly if there is no parent. Fix crash.

14 years agoSilence the conversion from xatom to atom too
Matthias Clasen [Thu, 20 Aug 2009 22:06:35 +0000 (18:06 -0400)]
Silence the conversion from xatom to atom too

14 years agoDeprecate also GdkFontPrivateWin32
Shixin Zeng [Thu, 20 Aug 2009 20:57:41 +0000 (23:57 +0300)]
Deprecate also GdkFontPrivateWin32

14 years agoReturn value from non-void function
Shixin Zeng [Thu, 20 Aug 2009 20:56:52 +0000 (23:56 +0300)]
Return value from non-void function

14 years agoUse g_object_ref/unref instead of deprecated specializations
Shixin Zeng [Thu, 20 Aug 2009 20:55:51 +0000 (23:55 +0300)]
Use g_object_ref/unref instead of deprecated specializations

14 years agoDon't use stream before it is created
Shixin Zeng [Thu, 20 Aug 2009 20:53:57 +0000 (23:53 +0300)]
Don't use stream before it is created

14 years agoPut variable definitions at start of block
Shixin Zeng [Thu, 20 Aug 2009 20:51:38 +0000 (23:51 +0300)]
Put variable definitions at start of block

14 years agoMore reentrancy protection for process_updates
Alexander Larsson [Thu, 20 Aug 2009 15:09:08 +0000 (17:09 +0200)]
More reentrancy protection for process_updates

Protect against exposes destroying windows in some more places.
Hopefully this fixes bug 589367.

14 years agoUpdated Galician Translation
Antón Méixome [Wed, 19 Aug 2009 14:26:24 +0000 (16:26 +0200)]
Updated Galician Translation

14 years agoUpdated Irish translation
Seán de Búrca [Wed, 19 Aug 2009 12:37:36 +0000 (06:37 -0600)]
Updated Irish translation

14 years agoUpdated Galician Translation
Antón Méixome [Wed, 19 Aug 2009 11:39:19 +0000 (13:39 +0200)]
Updated Galician Translation

14 years agoUpdated Brazilian Portuguese translation.
Leonardo Ferreira Fontenelle [Wed, 19 Aug 2009 02:15:12 +0000 (22:15 -0400)]
Updated Brazilian Portuguese translation.

14 years agoAdd missing file.
Andre Klapper [Tue, 18 Aug 2009 17:24:54 +0000 (19:24 +0200)]
Add missing file.

14 years agoAdd missing file.
Andre Klapper [Tue, 18 Aug 2009 17:22:38 +0000 (19:22 +0200)]
Add missing file.

14 years agoUse gtk-save icon for GtkPrintBackendFile
Marek Kasik [Tue, 18 Aug 2009 14:05:31 +0000 (16:05 +0200)]
Use gtk-save icon for GtkPrintBackendFile

Use gtk-save icon instead of gtk-floppy for GtkPrintBackendFile.

14 years agoCorrectly select default printer when there is more than one (CUPS)
Marek Kasik [Tue, 18 Aug 2009 11:22:23 +0000 (13:22 +0200)]
Correctly select default printer when there is more than one (CUPS)

Select a local default printer if there is one instead of a remote
default printer (specified by the "printer-type" CUPS attribute)
(#591549).

14 years agoShut up warning about calling gtk_object_get_type() having no effect
Michael Natterer [Tue, 18 Aug 2009 10:10:03 +0000 (12:10 +0200)]
Shut up warning about calling gtk_object_get_type() having no effect

14 years agoBump version
Matthias Clasen [Tue, 18 Aug 2009 03:53:36 +0000 (23:53 -0400)]
Bump version

14 years ago2.17.8
Matthias Clasen [Tue, 18 Aug 2009 03:51:50 +0000 (23:51 -0400)]
2.17.8

14 years agoUpdates
Matthias Clasen [Tue, 18 Aug 2009 02:19:24 +0000 (22:19 -0400)]
Updates

14 years agoSupport silent build rules with automake 1.11 (GnomeBug:591998)
Javier Jardón [Mon, 17 Aug 2009 15:55:09 +0000 (17:55 +0200)]
Support silent build rules with automake 1.11 (GnomeBug:591998)

Support silent build rules, requires at least automake-1.11.
Enable by either passing --enable-silent-rules to configure or
passing V=0 to make.

14 years agoHandle accelerators involving virtual modifiers better
Matthias Clasen [Mon, 17 Aug 2009 17:38:06 +0000 (13:38 -0400)]
Handle accelerators involving virtual modifiers better

The previous code would trigger on an unmodified 'S' key for a
'Super+S' accel. The current code avoids that at the cost of breaking
combinations like 'Mod4+Super+S' which are too exotic to worry about...
Bug 591526

14 years agoTiny docs improvement
Matthias Clasen [Mon, 17 Aug 2009 13:16:12 +0000 (09:16 -0400)]
Tiny docs improvement

Mention that gdk_xid_table_lookup may return  NULL. Bug 591432.

14 years agoBug 592003 - Shift+click should always modify selection
Paolo Borelli [Mon, 17 Aug 2009 15:04:30 +0000 (17:04 +0200)]
Bug 592003 - Shift+click should always modify selection

Shift-click inside an existing selection reduces the selection to the
range from the insert mark to the clicked point instead of removing the
selection. This makes GtkTextView more consistent with GtkEntry.

14 years agoDon't crash on NULL parent
Alexander Larsson [Mon, 17 Aug 2009 14:59:47 +0000 (16:59 +0200)]
Don't crash on NULL parent

The parent window can be NULL, check for that before dereferencing.

14 years agoUpdated Irish translation
Seán de Búrca [Mon, 17 Aug 2009 09:17:30 +0000 (03:17 -0600)]
Updated Irish translation

14 years agoRemove unused variable
Alexander Larsson [Sun, 16 Aug 2009 20:32:58 +0000 (22:32 +0200)]
Remove unused variable

14 years agoFix gdk_window_get_geometry for native children with non-native parent
Alexander Larsson [Sun, 16 Aug 2009 20:24:00 +0000 (22:24 +0200)]
Fix gdk_window_get_geometry for native children with non-native parent

gdk_window_get_geometry calls the native function for all non-native
windows. This returns coords relative to the native parent. We need
to convert this to be relative to the client side parent.

This fixes DnD coordinates in firefox (bug 588437).

14 years agoFix memory leaks when using add_objects
Paolo Borelli [Fri, 14 Aug 2009 09:33:47 +0000 (11:33 +0200)]
Fix memory leaks when using add_objects