| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
| |
Need to replace % by %amp; in examples. This was noticed in
bug 583522.
|
| |
|
|
|
|
| |
Fixes bgo#582963
|
|
|
|
|
| |
Make it more explicit that the return value needs to be freed.
Fixes bug 583050.
|
|
|
|
| |
Signed-off-by: Davyd Madeley <davyd@madeley.id.au>
|
|
|
|
| |
Add documentation based on the description from gtk_range_set_update_policy()
|
|
|
|
|
|
|
| |
Add test for EISCONN error when testing whether a connection to CUPS server
is available (#576678 - patch by mark@ecs.vuw.ac.nz).
Signed-off-by: Marek Kasik <mkasik@redhat.com>
|
| |
|
|\ |
|
| | |
|
| |
| |
| |
| | |
Fixes bgo#582950.
|
| |
| |
| |
| | |
This fixes bug 582488. The patch was provided by Morten Welinder.
|
|/
|
|
| |
Introduced in commit 9dbb30482b11075045e7624df7c771cb3fc1503f
|
|
|
|
| |
Introduced in 94b63ec9b7791036b0b09d4c2059059a1d7e9695
|
|
|
|
|
|
| |
Correctly handle conversion to SAVE_TARGETS as a side-effect target
with no side-effect, by returning a zero-sized property of type NULL.
See section 2.6.3 of the ICCCM.
|
|
|
|
|
| |
The property field in SelectionNotify events may be None instead
of an atom.
|
| |
|
| |
|
|
|
|
|
|
| |
Dup the file chooser entry string because the string may be modified
depending on what clients do in the confirm-overwrite signal and this
corrupts the pointer.
|
|
|
|
|
|
|
|
|
|
|
| |
GtkPrintOperation is now able to render multiple pages per sheet by its
own. The most important changes are in these functions:
* increment_page_sequence
* prepare_data
* common_render_page
* print_pages_idle
Patch also changes set of choices for 2 pages per sheet mode when
landscape orientation is used to "Top to bottom" and "Bottom to top".
|
|\
| |
| |
| |
| |
| | |
allocations gracefully
Merge branch 'gtk-2-16'
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously we would always align the top of the text with the label's allocation-plus-padding.
However, this makes a single-line label inside a GtkButton look badly clipped when the button
has a smaller allocation than its requisition. So, for single-line labels we respect the
alignment even if it doesn't fit within the label's allocation. But for multi-line labels, we
give preference to showing the first line, to give the user some context.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
|
|\ \
| |/
| |
| | |
gtk_clipboard_get_for_display() so Flash won't hang
|
| |
| |
| |
| | |
Flash won't hang
|
| |
| |
| |
| |
| |
| |
| | |
Calling gdk_window_get_events() had the side-effect of letting
property change notification through to the application, which
was not intended. Now we keep StructureNotify and PropertyNotify
filtered out when they were before. Reported in bug 582003.
|
| |
| |
| |
| |
| | |
The code in gdk_x11_window_set_events is only meant to enforce
property change events on child windows. Pointed out in bug 531490.
|
| |
| |
| |
| |
| | |
When called with the --force option, try to remove the .icon-theme.cache
file before giving up. This fixes rh#500163.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This should help with diagnosing crashes caused by over-eager XID
reuse in Xlib, see bug 581526.
|
| | |
|
| |
| |
| |
| |
| | |
Don't intern "NONE" and warn if GDK_NONE is converted to an
X atom. Problem pointed out in bug 580511.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
2008-09-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkspinbutton.c: Warn if the adjustment has nonzero page size.
svn path=/branches/gtk-2-14/; revision=21500
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
2008-09-23 Matthias Clasen <mclasen@redhat.com>
* README.in: Update to explain the situation.
* gtk/gtkadjustment.c: Revert to the old behaviour of allowing
values in the range [lower, upper]. Relying on the possibility
to set values in the [upper - page_size, upper] subrange is
considered deprecated, though, and will trigger a warning.
* gtk/gtkcombobox.c:
* gtk/gtkiconview.c:
* gtk/gtkrange.c:
* gtk/gtkscrolledwindow.c:
* gtk/gtktreeview.c: Add the CLAMPing back that was removed after
the GtkAdjustment behaviour change.
svn path=/branches/gtk-2-14/; revision=21499
Conflicts:
ChangeLog.pre-2-14
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
This fixes bug 579884. Previously the return value of g_slist_find_custom was
being recasted as type (GtkModuleInfo *). This patch sets the return value
to a temporary variable of type (GSList *), and sets info to temp->data. This
avoids a crashing problem.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Change gdk_window_set_icon_name to allow using NULL to unset a
previously set icon title, so that the icon title tracks the normal
title again. Bug #535557.
|