From 5699e20e4ec2dbacdc97b6d866e121551924efd2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 22 Jan 2015 16:24:13 +0000 Subject: [PATCH] Remove accidentally left over wxLogMessage() from wxGTK wxWebViewWebKit. This resulted in a message box being shown each time Find() was called and was clearly undesirable. Closes #16801. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/webview_webkit.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gtk/webview_webkit.cpp b/src/gtk/webview_webkit.cpp index e592331ed2..0680c7e54e 100644 --- a/src/gtk/webview_webkit.cpp +++ b/src/gtk/webview_webkit.cpp @@ -1051,7 +1051,6 @@ long wxWebViewWebKit::Find(const wxString& text, int flags) ClearSelection(); return wxNOT_FOUND; } - wxLogMessage(wxString::Format("Returning %d", m_findPosition)); return newSearch ? m_findCount : m_findPosition; }