From c494c3028cf0f178052e9557bc877649295213ce Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 8 Aug 2016 14:49:26 +0100 Subject: [PATCH] gfile: G_FILE_MONITOR_WATCH_MOVES was actually introduced in 2.46 I'm guessing the developments were done in 2.44 but the patches landed after the 2.45.0 bump without an update to the Since tags. Signed-off-by: Damien Lespiau https://bugzilla.gnome.org/show_bug.cgi?id=769630 --- gio/gioenums.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gio/gioenums.h b/gio/gioenums.h index 5ff3f3920..fd090af5f 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -328,14 +328,14 @@ typedef enum { * by file renames (moves) and send a single G_FILE_MONITOR_EVENT_MOVED * event instead (NB: not supported on all backends; the default * behaviour -without specifying this flag- is to send single DELETED - * and CREATED events). Deprecated since 2.44: use + * and CREATED events). Deprecated since 2.46: use * %G_FILE_MONITOR_WATCH_MOVES instead. * @G_FILE_MONITOR_WATCH_HARD_LINKS: Watch for changes to the file made * via another hard link. Since 2.36. * @G_FILE_MONITOR_WATCH_MOVES: Watch for rename operations on a * monitored directory. This causes %G_FILE_MONITOR_EVENT_RENAMED, * %G_FILE_MONITOR_EVENT_MOVED_IN and %G_FILE_MONITOR_EVENT_MOVED_OUT - * events to be emitted when possible. Since: 2.44. + * events to be emitted when possible. Since: 2.46. * * Flags used to set what a #GFileMonitor will watch for. */ @@ -403,13 +403,13 @@ typedef enum { * (deprecated) %G_FILE_MONITOR_SEND_MOVED flag is set * @G_FILE_MONITOR_EVENT_RENAMED: the file was renamed within the * current directory -- only sent if the %G_FILE_MONITOR_WATCH_MOVES - * flag is set. Since: 2.44. + * flag is set. Since: 2.46. * @G_FILE_MONITOR_EVENT_MOVED_IN: the file was moved into the * monitored directory from another location -- only sent if the - * %G_FILE_MONITOR_WATCH_MOVES flag is set. Since: 2.44. + * %G_FILE_MONITOR_WATCH_MOVES flag is set. Since: 2.46. * @G_FILE_MONITOR_EVENT_MOVED_OUT: the file was moved out of the * monitored directory to another location -- only sent if the - * %G_FILE_MONITOR_WATCH_MOVES flag is set. Since: 2.44 + * %G_FILE_MONITOR_WATCH_MOVES flag is set. Since: 2.46 * * Specifies what type of event a monitor event is. **/