mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-23 17:38:54 +02:00
Rename GTK+ to GTK (mostly comments and documentation)
GTK lost it's '+' suffix back in 2019, according to <https://mail.gnome.org/archives/gtk-devel-list/2019-February/msg00000.html> This commit can be re-generated with: git grep -l GTK+ \ | grep -v -e ^NEWS -e ^glib/tests/collate.c \ | xargs sed -i 's/GTK+/GTK/g' Most of the changes are in comments and documentation.
This commit is contained in:
@@ -73,7 +73,7 @@ typedef struct _GMainContext GMainContext;
|
||||
* GMainLoop:
|
||||
*
|
||||
* The `GMainLoop` struct is an opaque data type
|
||||
* representing the main event loop of a GLib or GTK+ application.
|
||||
* representing the main event loop of a GLib or GTK application.
|
||||
*/
|
||||
typedef struct _GMainLoop GMainLoop;
|
||||
|
||||
@@ -324,7 +324,7 @@ struct _GSourceFuncs
|
||||
*
|
||||
* Use this for high priority event sources.
|
||||
*
|
||||
* It is not used within GLib or GTK+.
|
||||
* It is not used within GLib or GTK.
|
||||
*/
|
||||
#define G_PRIORITY_HIGH -100
|
||||
|
||||
@@ -344,7 +344,7 @@ struct _GSourceFuncs
|
||||
*
|
||||
* Use this for high priority idle functions.
|
||||
*
|
||||
* GTK+ uses %G_PRIORITY_HIGH_IDLE + 10 for resizing operations,
|
||||
* GTK uses %G_PRIORITY_HIGH_IDLE + 10 for resizing operations,
|
||||
* and %G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is
|
||||
* done to ensure that any pending resizes are processed before any
|
||||
* pending redraws, so that widgets are not redrawn twice unnecessarily.)
|
||||
@@ -366,7 +366,7 @@ struct _GSourceFuncs
|
||||
*
|
||||
* Use this for very low priority background tasks.
|
||||
*
|
||||
* It is not used within GLib or GTK+.
|
||||
* It is not used within GLib or GTK.
|
||||
*/
|
||||
#define G_PRIORITY_LOW 300
|
||||
|
||||
|
Reference in New Issue
Block a user