]> Pileus Git - ~andy/gtk/log
~andy/gtk
14 years agoUpdated Malayalam Translations
Ani [Fri, 11 Sep 2009 06:37:41 +0000 (12:07 +0530)]
Updated Malayalam Translations

14 years agoUpdated German translation
Mario Blättermann [Thu, 10 Sep 2009 19:06:15 +0000 (21:06 +0200)]
Updated German translation

14 years agoMention gdk_window_restack
Matthias Clasen [Thu, 10 Sep 2009 17:52:29 +0000 (13:52 -0400)]
Mention gdk_window_restack

It is probably worth mentioning this function by name, since we've
added it explicitly to easy porting...

14 years agoAdd more hints
Matthias Clasen [Thu, 10 Sep 2009 17:51:02 +0000 (13:51 -0400)]
Add more hints

Mention problems related to cairo and clipping.

14 years agoCleanups
Matthias Clasen [Thu, 10 Sep 2009 02:40:44 +0000 (22:40 -0400)]
Cleanups

This commit removes dead code, mostly pointed out by clang.

14 years agoDon't send grab broken for implicit grabs on button release
Alexander Larsson [Thu, 10 Sep 2009 17:27:45 +0000 (19:27 +0200)]
Don't send grab broken for implicit grabs on button release

This is how it used to work, you only get grab broken if someone
else gets a grab, or if the grabbed window gets destroyed or unmapped.

14 years agoEnsure recursing gdk_window_process_all_updates works
Alexander Larsson [Thu, 10 Sep 2009 11:53:29 +0000 (13:53 +0200)]
Ensure recursing gdk_window_process_all_updates works

There are two issues here. First of all an ignored update didn't
use to unset update_idle which could cause all further idle repaints
to be ignored. (Bug #591583)

Secondly, if we ignore the process_all_updates we may end up not updating
the windows in update_windows unless something else triggers an update.
So, we handle this by checking for recursions and scheduling a new update
at the end of the outermost process_all_updates.

14 years agoUpdated Lithuanian translation.
Gintautas Miliauskas [Thu, 10 Sep 2009 10:46:13 +0000 (13:46 +0300)]
Updated Lithuanian translation.

14 years agoKeysyms docs update
Bastien Nocera [Thu, 10 Sep 2009 09:18:29 +0000 (10:18 +0100)]
Keysyms docs update

Mention XK_ prefixes as well.

14 years agoAvoid duplicate keysyms, ignore mispelled one
Bastien Nocera [Thu, 10 Sep 2009 09:15:10 +0000 (10:15 +0100)]
Avoid duplicate keysyms, ignore mispelled one

GDK_Select and GDK_Clear were duplicated, GDK_Calculater is
only useful for compulsive misspellers.

14 years agoUpdated Gujarati Translations
Sweta Kothari [Thu, 10 Sep 2009 08:50:08 +0000 (14:20 +0530)]
Updated Gujarati Translations

14 years agoUpdated Gujarati Translations
Sweta Kothari [Thu, 10 Sep 2009 07:27:02 +0000 (12:57 +0530)]
Updated Gujarati Translations

14 years agoUnbreak GtkComboBox::button-sensitivity
Kristian Rietveld [Wed, 9 Sep 2009 07:43:30 +0000 (09:43 +0200)]
Unbreak GtkComboBox::button-sensitivity

Fixed the button-sensivity patch done to GtkComboBox to account for
changes in appearance (changes to the appears-as-list style property).
Also, in list-mode, the event box that has been created below the cell
view also needs to have its sensitivity updated.

14 years agoBug 594668 - Add new Xorg keysyms
Bastien Nocera [Wed, 9 Sep 2009 17:01:43 +0000 (18:01 +0100)]
Bug 594668 - Add new Xorg keysyms

Add support for XF86keysym.h to gdkkeysyms-update.pl and
update the generated gdkkeysyms.h file for the latest sources.

14 years agoAccept "true" as a true value in printer settings
Matthias Clasen [Wed, 9 Sep 2009 15:52:07 +0000 (11:52 -0400)]
Accept "true" as a true value in printer settings

Some of the settings come directly from cups config files, which
have no case sensitivity requirement, so we should not be more
picky.  Bug 594652.

14 years agoDeprecate gdk_event_get_graphics exposes
Matthias Clasen [Wed, 9 Sep 2009 13:00:15 +0000 (09:00 -0400)]
Deprecate gdk_event_get_graphics exposes

This function is only used in deprecated, broken widgets. Also,
fix up some of its implmentation that clang was complaining about.

14 years agoRemove a dead assignment
Matthias Clasen [Wed, 9 Sep 2009 04:53:32 +0000 (00:53 -0400)]
Remove a dead assignment

Pointed out by clang.

14 years agoRemove a dead assignment
Matthias Clasen [Wed, 9 Sep 2009 04:52:01 +0000 (00:52 -0400)]
Remove a dead assignment

Pointed out by clang.

14 years agoFix a typo
Matthias Clasen [Wed, 9 Sep 2009 04:01:23 +0000 (00:01 -0400)]
Fix a typo

14 years agoMake the custom paper size dialog not block the main dialog
Matthias Clasen [Tue, 8 Sep 2009 23:39:52 +0000 (19:39 -0400)]
Make the custom paper size dialog not block the main dialog

This was causing problems in gedit, which uses window groups.
Bug 593678.

14 years agoDon't access the parent level, there might not be one
Kristian Rietveld [Tue, 8 Sep 2009 13:51:10 +0000 (15:51 +0200)]
Don't access the parent level, there might not be one

Use the index instead, that can be -1.  A unit test has been added as
well.

14 years agoFix handling of window cursor wrt grabs
Alexander Larsson [Tue, 8 Sep 2009 09:48:20 +0000 (11:48 +0200)]
Fix handling of window cursor wrt grabs

Even for grabs we need to recurse up to look for what cursor to use.

14 years agoOne more unit test
Paolo Borelli [Mon, 7 Sep 2009 09:16:33 +0000 (11:16 +0200)]
One more unit test

14 years agoSimple expander unit test
Paolo Borelli [Sun, 6 Sep 2009 14:09:17 +0000 (16:09 +0200)]
Simple expander unit test

14 years agoAvoid recursive calls to gtk_tree_view_top_row_to_dy()
Kristian Rietveld [Sun, 6 Sep 2009 18:23:05 +0000 (20:23 +0200)]
Avoid recursive calls to gtk_tree_view_top_row_to_dy()

Commit 3f306a40422e367ef03b9e6f6c80dec9fc932602 made it possible for
gtk_tree_view_top_row_to_dy() to be called recursively.  (In a different
way than was already guarded for).  This caused a single test case in
the scrolling test suite to fail.  We now also guard for recursive calls at
the beginning of gtk_tree_view_top_row_to_dy().

14 years agoUpdated Polish translation
Tomasz Dominikowski [Sun, 6 Sep 2009 12:29:50 +0000 (14:29 +0200)]
Updated Polish translation

14 years agoBug 346800 - Rework sort/filter models to use indices to parents...
Kristian Rietveld [Sun, 6 Sep 2009 11:35:37 +0000 (13:35 +0200)]
Bug 346800 - Rework sort/filter models to use indices to parents...

Rework the sort and filter models to store their reference to the parent
element as an array index instead of a pointer to an array element.
These pointers could become invalid with any array modification, whereas
indices do not.

14 years agoUpdate Japanese translation
Takayuki KUSANO [Sun, 6 Sep 2009 09:47:08 +0000 (18:47 +0900)]
Update Japanese translation

14 years agoCorrect the initial event mask of the root window
Matthias Clasen [Sun, 6 Sep 2009 06:42:39 +0000 (02:42 -0400)]
Correct the initial event mask of the root window

This fixes bug 588455 where the panel stopped responding to Alt-F2 when
setting a transparent background.

14 years agoFix compiler warnings
Kristian Rietveld [Sat, 5 Sep 2009 14:59:17 +0000 (16:59 +0200)]
Fix compiler warnings

14 years agoFix memleak in filter model unit test
Kristian Rietveld [Sat, 5 Sep 2009 14:58:12 +0000 (16:58 +0200)]
Fix memleak in filter model unit test

(There is one larger memleak left here, but this is a side effect of the
test case for bug 346800).

14 years agoList work left to do in the filter model unit test
Kristian Rietveld [Sat, 5 Sep 2009 14:47:35 +0000 (16:47 +0200)]
List work left to do in the filter model unit test

14 years agoEmit row-has-child-toggled when a first node becomes visible in a level
Kristian Rietveld [Sat, 5 Sep 2009 14:41:09 +0000 (16:41 +0200)]
Emit row-has-child-toggled when a first node becomes visible in a level

If we have a level with zero visible nodes and the first node becomes
visible in that level, then parent has just become a "real" parent node.
In such a case we need to emit row-has-child-toggled.  This only applies
to non-root levels that have a parent.  This problem was also found when
writing the unit test, the respective cases in the unit test have been
corrected.

This fixes bugs:
 Bug 372010 - Filtering not working properly
 Bug 525965 - Filtered and sorted GtkTreeView is missing rows

14 years agoWhen the filter removes a node, it needs to remove its children too
Kristian Rietveld [Sat, 5 Sep 2009 14:12:48 +0000 (16:12 +0200)]
When the filter removes a node, it needs to remove its children too

In gtk_tree_model_filter_remove_node(), we check if the given elt has
children.  If so, this level will be freed.  This action is recursive.

14 years agoHave the unit test check if the filter model emits the right signals
Kristian Rietveld [Sat, 5 Sep 2009 13:57:25 +0000 (15:57 +0200)]
Have the unit test check if the filter model emits the right signals

14 years agoProperly handle cases where an ancestor node is invisible
Kristian Rietveld [Fri, 4 Sep 2009 07:28:21 +0000 (09:28 +0200)]
Properly handle cases where an ancestor node is invisible

14 years agoExtend filter model unit test with row-has-child-toggled testers
Kristian Rietveld [Wed, 2 Sep 2009 10:47:53 +0000 (12:47 +0200)]
Extend filter model unit test with row-has-child-toggled testers

14 years agoCorrect handling of row-has-child-toggled signal
Kristian Rietveld [Wed, 2 Sep 2009 10:45:41 +0000 (12:45 +0200)]
Correct handling of row-has-child-toggled signal

When a filter function is used that determines the visibility property
of a node using whether or it it has children, the state of this node
very likely changes when the filter model receives a
row-has-child-toggled signal.  Therefore, we need to handle state
changes in the row-has-child-toggled handler.

14 years agoRemove unused variable
Kristian Rietveld [Tue, 1 Sep 2009 16:06:56 +0000 (18:06 +0200)]
Remove unused variable

14 years agoMore virtual root unit tests
Kristian Rietveld [Tue, 1 Sep 2009 16:05:46 +0000 (18:05 +0200)]
More virtual root unit tests

14 years agoAdd a rather specially crafted test case
Kristian Rietveld [Tue, 1 Sep 2009 15:51:50 +0000 (17:51 +0200)]
Add a rather specially crafted test case

14 years agoMarking nodes invisible after pulling in the root level is wrong
Kristian Rietveld [Tue, 1 Sep 2009 15:51:19 +0000 (17:51 +0200)]
Marking nodes invisible after pulling in the root level is wrong

14 years agoDo not emit has-child-toggled when a root level node is removed
Kristian Rietveld [Tue, 1 Sep 2009 15:49:02 +0000 (17:49 +0200)]
Do not emit has-child-toggled when a root level node is removed

14 years agoCorrect unfiltered test cases
Kristian Rietveld [Tue, 1 Sep 2009 14:45:39 +0000 (16:45 +0200)]
Correct unfiltered test cases

14 years agoCheck for successfull iterator retrieval
Kristian Rietveld [Tue, 1 Sep 2009 14:37:57 +0000 (16:37 +0200)]
Check for successfull iterator retrieval

14 years agoRefilter is required after setting visible column
Kristian Rietveld [Tue, 1 Sep 2009 14:19:30 +0000 (16:19 +0200)]
Refilter is required after setting visible column

14 years agoCorrect /FilterModel/empty/vroot-show-nodes test case
Kristian Rietveld [Tue, 1 Sep 2009 14:15:08 +0000 (16:15 +0200)]
Correct /FilterModel/empty/vroot-show-nodes test case

14 years agoOnly emit row-inserted if all ancestors are visible
Kristian Rietveld [Tue, 1 Sep 2009 14:10:05 +0000 (16:10 +0200)]
Only emit row-inserted if all ancestors are visible

14 years agoGeneralize fixture setup code
Kristian Rietveld [Tue, 1 Sep 2009 12:50:32 +0000 (14:50 +0200)]
Generalize fixture setup code

14 years agoMake a start with virtual root unit tests
Kristian Rietveld [Tue, 1 Sep 2009 12:46:11 +0000 (14:46 +0200)]
Make a start with virtual root unit tests

14 years agoAdd test cases for bugs 464173 and 529287
Kristian Rietveld [Tue, 1 Sep 2009 11:54:35 +0000 (13:54 +0200)]
Add test cases for bugs 464173 and 529287

14 years agoAdd unit test for bug 540201
Kristian Rietveld [Tue, 1 Sep 2009 09:14:40 +0000 (11:14 +0200)]
Add unit test for bug 540201

14 years agoAdd a helper for inserting paths in the test tree store
Kristian Rietveld [Tue, 1 Sep 2009 07:39:11 +0000 (09:39 +0200)]
Add a helper for inserting paths in the test tree store

14 years agoStart a testsuite for GtkTreeModelFilter
Kristian Rietveld [Tue, 1 Sep 2009 07:17:02 +0000 (09:17 +0200)]
Start a testsuite for GtkTreeModelFilter

14 years agoFix fallout from automake version bump
Matthias Clasen [Sat, 5 Sep 2009 05:46:39 +0000 (01:46 -0400)]
Fix fallout from automake version bump

14 years agoBump version
Matthias Clasen [Sat, 5 Sep 2009 04:36:49 +0000 (00:36 -0400)]
Bump version

14 years ago2.17.11
Matthias Clasen [Sat, 5 Sep 2009 04:35:08 +0000 (00:35 -0400)]
2.17.11

14 years agoFix a typo
Matthias Clasen [Sat, 5 Sep 2009 03:27:37 +0000 (23:27 -0400)]
Fix a typo

14 years agoFix the build
Matthias Clasen [Sat, 5 Sep 2009 03:00:27 +0000 (23:00 -0400)]
Fix the build

14 years agoDocumentation additions
Matthias Clasen [Sat, 5 Sep 2009 02:53:03 +0000 (22:53 -0400)]
Documentation additions

14 years agoUpdates
Matthias Clasen [Sat, 5 Sep 2009 02:47:59 +0000 (22:47 -0400)]
Updates

14 years agoMake gtk_combo_box_entry_set_text_column more forgiving
Matthias Clasen [Sat, 5 Sep 2009 02:20:28 +0000 (22:20 -0400)]
Make gtk_combo_box_entry_set_text_column more forgiving

The assertions in there were unnecessarily restrictive. This has
been reported in bug 564160.

14 years agoDon't forget to set the client window on the slave
Matthias Clasen [Sat, 5 Sep 2009 00:34:09 +0000 (20:34 -0400)]
Don't forget to set the client window on the slave

14 years agoMake window manager tracking work better
Matthias Clasen [Sat, 5 Sep 2009 00:22:43 +0000 (20:22 -0400)]
Make window manager tracking work better

We were getting the new wm name with a 15 second delay, due to
some race. Reported in bug 593644.

14 years agoAvoid a segfault if license is NULL
Matthias Clasen [Fri, 4 Sep 2009 22:22:30 +0000 (18:22 -0400)]
Avoid a segfault if license is NULL

The license field was introduced later on, so some out-of-tree loaders
may not set it. And Solaris printf() doesn't take NULL for a string...
Bug 594178.

14 years agoRework the way IM contexts are set
Matthias Clasen [Fri, 4 Sep 2009 22:09:44 +0000 (18:09 -0400)]
Rework the way IM contexts are set

Add a function to obtain the effective context id, and reset the slave
only when the effective context id is different from the current context
id, when setting a client window and on focus in. This might fix
bug 593868 and bug 567124.

14 years agoTry again to allow newer automake
Matthias Clasen [Fri, 4 Sep 2009 19:13:09 +0000 (15:13 -0400)]
Try again to allow newer automake

14 years agoRevert "Add AM_PROG_CC_C_O"
Matthias Clasen [Fri, 4 Sep 2009 16:05:10 +0000 (12:05 -0400)]
Revert "Add AM_PROG_CC_C_O"

This reverts commit 1606b822321fb4cd370a2cd2e117481e125722ee.

14 years agoRevert "Accept automake 1.10 and 1.11"
Matthias Clasen [Fri, 4 Sep 2009 16:04:51 +0000 (12:04 -0400)]
Revert "Accept automake 1.10 and 1.11"

This reverts commit 76dab7b3b745c285f814311b071fefc8244d5245.

14 years agoDeprecate GDK_WINDOW_OBJECT and GdkWindowObject
Alexander Larsson [Fri, 4 Sep 2009 15:53:27 +0000 (17:53 +0200)]
Deprecate GDK_WINDOW_OBJECT and GdkWindowObject

14 years agoAdd function accessors for x11 window/pixmap impl
Alexander Larsson [Fri, 4 Sep 2009 15:52:46 +0000 (17:52 +0200)]
Add function accessors for x11 window/pixmap impl

14 years agoMake public GDK_WINDOW_TYPE and GDK_WINDOW_DESTROYED use functions calls
Alexander Larsson [Fri, 4 Sep 2009 15:50:42 +0000 (17:50 +0200)]
Make public GDK_WINDOW_TYPE and GDK_WINDOW_DESTROYED use functions calls

14 years agoAdd gdk_window_is_destroyed
Alexander Larsson [Fri, 4 Sep 2009 15:49:57 +0000 (17:49 +0200)]
Add gdk_window_is_destroyed

14 years agoMove _gdk_window_event_parent_of to gdkinternals.h
Alexander Larsson [Fri, 4 Sep 2009 15:48:49 +0000 (17:48 +0200)]
Move _gdk_window_event_parent_of to gdkinternals.h

gdkprivate.h is in installed file and this function does not
need to be exported.

14 years agoAccept automake 1.10 and 1.11
Matthias Clasen [Fri, 4 Sep 2009 15:52:55 +0000 (11:52 -0400)]
Accept automake 1.10 and 1.11

This was tested to work in bug 588788.

14 years agoAdd AM_PROG_CC_C_O
Matthias Clasen [Fri, 4 Sep 2009 15:51:50 +0000 (11:51 -0400)]
Add AM_PROG_CC_C_O

14 years agoProtect gtk_text_view_scroll_mark_onscreen() from using invalid marks
Kristian Rietveld [Fri, 4 Sep 2009 15:40:12 +0000 (17:40 +0200)]
Protect gtk_text_view_scroll_mark_onscreen() from using invalid marks

Suggested by Paolo Borelli.

14 years agoRecalculate heights when a (new) separator func is set on GtkTreeView
Kristian Rietveld [Fri, 4 Sep 2009 14:56:05 +0000 (16:56 +0200)]
Recalculate heights when a (new) separator func is set on GtkTreeView

14 years agoMove mark check to gtk_text_view_scroll_to_mark()
Kristian Rietveld [Fri, 4 Sep 2009 14:38:04 +0000 (16:38 +0200)]
Move mark check to gtk_text_view_scroll_to_mark()

Also use a different means to check that the given mark is in the text
view's buffer.  This will also play nice with anonymous and NULL marks.
Suggested by Paolo Borelli.

14 years agoEnsure clip region valid before using it for emulating graphics exposures
Alexander Larsson [Fri, 4 Sep 2009 14:01:35 +0000 (16:01 +0200)]
Ensure clip region valid before using it for emulating graphics exposures

If there is a drawable clip on it we don't want to use that.

14 years agoEnsure gc clip region valid in _gdk_gc_update_context
Alexander Larsson [Fri, 4 Sep 2009 13:59:22 +0000 (15:59 +0200)]
Ensure gc clip region valid in _gdk_gc_update_context

There might be an old drawable clip on it, if so remove it.

14 years agogtk_widget_set_property(): use accessors instead of setting flags
Michael Natterer [Fri, 4 Sep 2009 13:18:24 +0000 (15:18 +0200)]
gtk_widget_set_property(): use accessors instead of setting flags

Use the newly added accessors to set the "can-focus", "can-default"
and "receives-default" properties.

14 years agogtk_widget_set_property(): use gtk_widget_set_visible()
Michael Natterer [Fri, 4 Sep 2009 12:54:13 +0000 (14:54 +0200)]
gtk_widget_set_property(): use gtk_widget_set_visible()

Use the new API instead of show() and hide().

14 years agoBug 69872 - GTK_WIDGET_SET_FLAGS should be deprecated
Michael Natterer [Fri, 4 Sep 2009 12:50:35 +0000 (14:50 +0200)]
Bug 69872 - GTK_WIDGET_SET_FLAGS should be deprecated

Add gtk_widget_set_receives_default() and
gtk_widget_get_receives_default() as accessors for
GTK_RECEIVES_DEFAULT.

14 years agoImprove unsetting old buffer in gtk_text_view_set_buffer()
Kristian Rietveld [Fri, 4 Sep 2009 11:41:17 +0000 (13:41 +0200)]
Improve unsetting old buffer in gtk_text_view_set_buffer()

When unsetting the old buffer always set the buffer on the layout to
NULL.  More importantly, clear the pending scroll.  (The scroll is
handled in an idle, when not cleared an idle handler might touch the
layout later on, possibly corrupting the BTree).  Unref the buffer after
removing the selection from the clipboard, not before.  Patch merged
from maemo-gtk.

14 years agoFail to scroll if the given mark is not in text view's current buffer
Kristian Rietveld [Fri, 4 Sep 2009 11:34:56 +0000 (13:34 +0200)]
Fail to scroll if the given mark is not in text view's current buffer

In gtk_text_view_queue_scroll() we need to verify if the given mark
exists in the text view's current buffer.  When not done, this can
result in corruption of the BTree data structure.  Patch merged from
maemo-gtk.

14 years agoUpdate IM spot location before running _validate_onscreen()
Kristian Rietveld [Fri, 4 Sep 2009 11:30:48 +0000 (13:30 +0200)]
Update IM spot location before running _validate_onscreen()

Updating the IM spot location in gtk_text_view_value_changed() might
invalidate the layout, so we need to make sure that we update it before
validating the layout again.  Otherwise, the layout will be invalidated
right after validating it (possibly resulting in a failed
onscreen_validated assertion).  Patch merged from maemo-gtk.

14 years agoMake toggle cell renderer follow insensitive state of widget
Kristian Rietveld [Fri, 4 Sep 2009 11:21:26 +0000 (13:21 +0200)]
Make toggle cell renderer follow insensitive state of widget

Likewise to other cell renderers, GtkCellRendererToggle now properly
follows the insensitive state of the widget requesting rendering.  It
does this by checking the state of the widget pointer, not by using
GtkCellRendererFlags (there exists an insensitive flags).  Later on, I
think we should move to using GtkCellRendererFlags and not the state of
the widget requesting rendering.  Patch merged from maemo-gtk.

14 years agoPropagate insensitive state to cell renderers in GtkCellView
Kristian Rietveld [Fri, 4 Sep 2009 11:11:19 +0000 (13:11 +0200)]
Propagate insensitive state to cell renderers in GtkCellView

If the cell view is insensitive, it needs to properly propagate this
insensitive state to the cell renderers using cell renderer flags.
Merged from maemo-gtk.

14 years agoHave tree view process exposes after adjustments have been updated
Kristian Rietveld [Fri, 4 Sep 2009 09:06:11 +0000 (11:06 +0200)]
Have tree view process exposes after adjustments have been updated

This was removed long ago by the patch in bug 101235.  On a hindsight,
all other scrollable widgets are processing exposes at this point, which
completely makes sense to me, so I am putting it back.

14 years agoCorrect the antiexposure vs implicit paint flush race
Alexander Larsson [Fri, 4 Sep 2009 11:14:25 +0000 (13:14 +0200)]
Correct the antiexposure vs implicit paint flush race

The check for a possible implicit paint flush before queueing an
antiexposure was wrong. An implicit flush doesn't actually NULL
the implicit paint, se we have add a flag to explicitly track if
it is flushed.

14 years agoDon't access region when it might be freed
Alexander Larsson [Fri, 4 Sep 2009 11:10:35 +0000 (13:10 +0200)]
Don't access region when it might be freed

Passing region into _gdk_gc_set_clip_region_internal takes ownership,
so don't use it after that. We can just as well just move the usage
above the call.

14 years agoFix warnings in gdk_window_restack
Alexander Larsson [Fri, 4 Sep 2009 09:08:46 +0000 (11:08 +0200)]
Fix warnings in gdk_window_restack

14 years agoBug 584638 - Build of gtkupdateiconcache without NLS breaks
Christian Dywan [Thu, 3 Sep 2009 09:30:12 +0000 (11:30 +0200)]
Bug 584638 - Build of gtkupdateiconcache without NLS breaks

Wrap textdomain calls in updateiconcache.c in NLS conditionals.

14 years agoFix the return type of gdk_selection_property_get
Matthias Clasen [Thu, 3 Sep 2009 02:50:05 +0000 (22:50 -0400)]
Fix the return type of gdk_selection_property_get

It returns the length of the property, not a boolean. Reported
in bug 593788.

14 years agoAdd a missing include
Matthias Clasen [Thu, 3 Sep 2009 02:14:47 +0000 (22:14 -0400)]
Add a missing include

This was reported in bug 593606.

14 years agoRemove sincos use
Matthias Clasen [Thu, 3 Sep 2009 02:11:28 +0000 (22:11 -0400)]
Remove sincos use

It turns out to be not worth the portability pain. Bug 593877

14 years agoFix a merge conflict
Matthias Clasen [Thu, 3 Sep 2009 01:39:36 +0000 (21:39 -0400)]
Fix a merge conflict

14 years agoBump version
Matthias Clasen [Tue, 1 Sep 2009 13:25:18 +0000 (09:25 -0400)]
Bump version

14 years ago2.17.10
Matthias Clasen [Tue, 1 Sep 2009 13:23:08 +0000 (09:23 -0400)]
2.17.10