| Date: Thu, 31 Dec 2020 18:00:57 -0800
Reenable deprecation warnings with GTK3
We previously had to turn deprecation warnings
off because our use of GtkTable caused far too
many warnings. Now that we use GtkGrid we
can reenable these warnings so that we can focus
on the remaining deprecated functions.
Diffstat:
M configure.ac | 5 -----
1 file changed, 0 insertions(+), 5 deletions(-)
--- |
| t@@ -186,11 +186,6 @@ else
gtk3_found="no"
if test "$USE_GTK3" = "yes" ; then
PKG_CHECK_MODULES([GTK], [gtk+-3.0], gtk3_found="yes", gtk3_found="no")
- if test "$gtk3_found" = "yes" ; then
- # We use GtkTable a lot so don't clutter the compiler output with
- # recommendations to use GtkGrid instead
- CPPFLAGS="$CPPFLAGS -DGDK_DISABLE_DEPRECATION_WARNINGS"
- fi
fi
if test "$gtk3_found" = "no" ; then
AM_PATH_GTK_2_0(2.0.0,gtk2_found="yes",gtk2_found="no") |