From 85272533a2bfac2b766569db45d23f9a7965d4e5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 24 Jun 2005 12:22:30 +0000 Subject: [PATCH] use wxVLogWarning in TIFFwxWarningHandler() instead of wxLogWarning (bug 1226815) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/imagtiff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/imagtiff.cpp b/src/common/imagtiff.cpp index 0e31879a4e..749f744de0 100644 --- a/src/common/imagtiff.cpp +++ b/src/common/imagtiff.cpp @@ -141,7 +141,7 @@ TIFFwxWarningHandler(const char* module, const char* fmt, va_list ap) { if (module != NULL) wxLogWarning(_("tiff module: %s"), module); - wxLogWarning((wxChar *) fmt, ap); + wxVLogWarning((wxChar *) fmt, ap); } static void -- 2.45.2