From: Vadim Zeitlin Date: Mon, 17 Jan 2005 00:13:39 +0000 (+0000) Subject: added argc and argv arguments to wxInitializer ctor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/76cebbff3537fea6a083ec534624dc765595e679 added argc and argv arguments to wxInitializer ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/init.h b/include/wx/init.h index a30de75228..7cdcda57f8 100644 --- a/include/wx/init.h +++ b/include/wx/init.h @@ -72,7 +72,10 @@ class WXDLLIMPEXP_BASE wxInitializer { public: // initialize the library - wxInitializer() { m_ok = wxInitialize(); } + wxInitializer(int argc = 0, wxChar **argv = NULL) + { + m_ok = wxInitialize(argc, argv); + } // has the initialization been successful? (explicit test) bool IsOk() const { return m_ok; }