From a0b1b91fe6ea9ee743ca658cb427d64052a8f57b Mon Sep 17 00:00:00 2001 From: George Tasker Date: Thu, 26 Apr 2001 01:12:48 +0000 Subject: [PATCH] Fixed BCC compilation warning if wxUSE_HELP was 1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpctrl.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 3924519147..13b00c1490 100644 --- a/src/html/helpctrl.cpp +++ b/src/html/helpctrl.cpp @@ -212,9 +212,8 @@ bool wxHtmlHelpController::DisplayTextPopup(const wxString& text, const wxPoint& return TRUE; } - return FALSE; #endif - return FALSE; + return FALSE; } void wxHtmlHelpController::SetFrameParameters(const wxString& title, -- 2.50.0