Deprecate gdk_window_process[_all]_updates

These functions should not be used anymore now that we have a
frame clock, and are gone in GTK+ 4
This commit is contained in:
Matthias Clasen 2017-01-10 20:24:23 -05:00
parent 99abc6363a
commit 6da8cbc87e
2 changed files with 4 additions and 2 deletions

View File

@ -4056,6 +4056,7 @@ after_process_all_updates (void)
* Calls gdk_window_process_updates() for all windows (see #GdkWindow)
* in the application.
*
* Deprecated: 3.22
**/
void
gdk_window_process_all_updates (void)
@ -4203,6 +4204,7 @@ gdk_window_process_updates_with_mode (GdkWindow *window,
* case, where GDK delivers them in an idle handler). Occasionally
* this is useful to produce nicer scrolling behavior, for example.
*
* Deprecated: 3.22
**/
void
gdk_window_process_updates (GdkWindow *window,

View File

@ -1054,9 +1054,9 @@ void gdk_window_freeze_toplevel_updates_libgtk_only (GdkWindow *window);
GDK_DEPRECATED_IN_3_16
void gdk_window_thaw_toplevel_updates_libgtk_only (GdkWindow *window);
GDK_AVAILABLE_IN_ALL
GDK_DEPRECATED_IN_3_22
void gdk_window_process_all_updates (void);
GDK_AVAILABLE_IN_ALL
GDK_DEPRECATED_IN_3_22
void gdk_window_process_updates (GdkWindow *window,
gboolean update_children);