summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <corentin.noel@collabora.com>2023-03-05 22:01:11 +0100
committerMilan Crha <mcrha@redhat.com>2023-03-17 07:12:57 +0000
commit3d56456575cc698f0322a9c9aaf984c090c23596 (patch)
tree56d7790f7555bf8078f722e4b737b5b7e0b55215
parent04aa1fda0597b7b101a064413fc8db4145add2a2 (diff)
downloadevolution-data-server-3d56456575cc698f0322a9c9aaf984c090c23596.tar.gz
M!116 - libedataserver: Disable deprecation notice around e_flag_timed_wait
GTimeVal is indeed deprecated and so is e_flag_timed_wait itself so no need for another Y2038-proof function here. Closes https://gitlab.gnome.org/GNOME/evolution-data-server/-/merge_requests/116
-rw-r--r--src/libedataserver/e-flag.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libedataserver/e-flag.h b/src/libedataserver/e-flag.h
index 16b1e23db..e0567f4e3 100644
--- a/src/libedataserver/e-flag.h
+++ b/src/libedataserver/e-flag.h
@@ -50,8 +50,10 @@ gboolean e_flag_wait_until (EFlag *flag,
void e_flag_free (EFlag *flag);
#ifndef EDS_DISABLE_DEPRECATED
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
gboolean e_flag_timed_wait (EFlag *flag,
GTimeVal *abs_time);
+G_GNUC_END_IGNORE_DEPRECATIONS
#endif /* EDS_DISABLE_DEPRECATED */
G_END_DECLS