[glib] glib/gwin32.c: Silence a Deprecation Warning



commit 6011d0a4ae9a8e70e20df3b7ad37f940ddf2f9f8
Author: Chun-wei Fan <fanchunwei src gnome org>
Date:   Fri Dec 13 16:21:00 2013 +0800

    glib/gwin32.c: Silence a Deprecation Warning
    
    Since we are already building a deprecated function for compatibility
    reasons, we don't really need to see a warning when it uses another
    deprecated GLib function.

 glib/gwin32.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/glib/gwin32.c b/glib/gwin32.c
index 97eccd7..01e6445 100644
--- a/glib/gwin32.c
+++ b/glib/gwin32.c
@@ -483,7 +483,9 @@ g_win32_get_package_installation_subdirectory (const gchar *package,
   gchar *prefix;
   gchar *dirname;
 
+  G_GNUC_BEGIN_IGNORE_DEPRECATIONS
   prefix = g_win32_get_package_installation_directory (package, dll_name);
+  G_GNUC_END_IGNORE_DEPRECATIONS
 
   dirname = g_build_filename (prefix, subdir, NULL);
   g_free (prefix);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]