mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
Part 1 of a multipart commit
Part 1 of a multipart commit
This commit is contained in:
parent
824bc30f68
commit
72aa0d6611
@ -29,6 +29,8 @@
|
||||
|
||||
#if defined (GDK_WINDOWING_X11)
|
||||
#include "x11/gdkx.h"
|
||||
#elif defined (GDK_WINDOWING_FB)
|
||||
#include "linux-fb/gdkfb.h"
|
||||
#endif
|
||||
#include "gdk/gdkkeysyms.h"
|
||||
#include "gtkcolorsel.h"
|
||||
|
@ -1494,6 +1494,7 @@ gtk_range_adjustment_value_changed (GtkAdjustment *adjustment,
|
||||
{
|
||||
gtk_range_slider_update (range);
|
||||
gtk_range_clear_background (range);
|
||||
gdk_window_process_updates (range->trough, TRUE);
|
||||
|
||||
range->old_value = adjustment->value;
|
||||
}
|
||||
|
@ -183,7 +183,7 @@ gtk_type_init (void)
|
||||
if (builtin_info[i].parent == G_TYPE_ENUM)
|
||||
type_id = g_enum_register_static (builtin_info[i].type_name, builtin_info[i].values);
|
||||
else if (builtin_info[i].parent == G_TYPE_FLAGS)
|
||||
type_id = g_flags_register_static (builtin_info[i].type_name, builtin_info[i].values);
|
||||
type_id = g_flags_register_static (builtin_info[i].type_name, (const GFlagsValue *)builtin_info[i].values);
|
||||
else if (builtin_info[i].parent == GTK_TYPE_BOXED)
|
||||
type_id = g_type_register_static (GTK_TYPE_BOXED, builtin_info[i].type_name, &tinfo);
|
||||
else
|
||||
|
@ -35,6 +35,8 @@
|
||||
#include "win32/gdkwin32.h"
|
||||
#elif defined (GDK_WINDOWING_NANOX)
|
||||
#include "nanox/gdkprivate-nanox.h"
|
||||
#elif defined (GDK_WINDOWING_FB)
|
||||
#include "linux-fb/gdkfb.h"
|
||||
#endif
|
||||
|
||||
#include "gtkprivate.h"
|
||||
|
Loading…
Reference in New Issue
Block a user