From: Vadim Zeitlin Date: Mon, 22 Jun 1998 22:06:42 +0000 (+0000) Subject: VC++ warning suppressed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8abf40fbb9829628647c6c02c2a9b35bb7475b70 VC++ warning suppressed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/helpxlp.cpp b/src/generic/helpxlp.cpp index 0631f6d80a..0487ac5cfd 100644 --- a/src/generic/helpxlp.cpp +++ b/src/generic/helpxlp.cpp @@ -66,13 +66,22 @@ IMPLEMENT_CLASS(wxXLPHelpConnection, wxTCPConnection) IMPLEMENT_CLASS(wxXLPHelpController, wxHelpControllerBase) #endif -wxXLPHelpController::wxXLPHelpController(void): - helpClient(this) +// suppress annoying warning "'this' used in base member init list" (so what?) +#ifdef _MSC_VER +#pragma warning(disable: 4355) +#endif // Visual C++ + +wxXLPHelpController::wxXLPHelpController(void) + : helpClient(this) { helpFile = ""; helpServer = -1; helpHost = ""; helpRunning = FALSE; helpConnection = NULL; } +#ifdef _MSC_VER +#pragma warning(default: 4355) +#endif // Visual C++ + wxXLPHelpController::~wxXLPHelpController(void) { }