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
This commit is contained in:
Vadim Zeitlin
2015-01-22 16:24:13 +00:00
parent 5788b4b3d9
commit 5699e20e4e

View File

@@ -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;
}