From 482426f4fc93452427fae46ff2152ce27f8a1b29 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 17 Feb 2020 19:29:26 +0100 Subject: [PATCH] Use correct toolkit name in wxUniv error message in configure $TOOLKIT refers to the underlying toolkit, while the error message should really indicate that the missing functionality is in wxUniv. --- configure | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 75b39aa55c..e694f0985a 100755 --- a/configure +++ b/configure @@ -36153,8 +36153,8 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then $as_echo "$as_me: WARNING: wxTooltip not supported yet under Motif... disabled" >&2;} else if test "$wxUSE_UNIVERSAL" = "yes"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&5 -$as_echo "$as_me: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&5 +$as_echo "$as_me: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&2;} else $as_echo "#define wxUSE_TOOLTIPS 1" >>confdefs.h diff --git a/configure.in b/configure.in index ccf8691dd8..76039da63c 100644 --- a/configure.in +++ b/configure.in @@ -7024,7 +7024,7 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled]) else if test "$wxUSE_UNIVERSAL" = "yes"; then - AC_MSG_WARN([wxTooltip not supported yet in $TOOLKIT... disabled]) + AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled]) else AC_DEFINE(wxUSE_TOOLTIPS) fi