X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d04a9fdfe2fae53a4a633db465eb8b379bbd974d..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/module.h?ds=sidebyside diff --git a/include/wx/module.h b/include/wx/module.h index bff799aaa9..96600b76ca 100644 --- a/include/wx/module.h +++ b/include/wx/module.h @@ -4,7 +4,6 @@ // Author: Wolfram Gloger/adapted by Guilhem Lavaux // Modified by: // Created: 04/11/98 -// RCS-ID: $Id$ // Copyright: (c) Wolfram Gloger and Guilhem Lavaux // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -14,6 +13,7 @@ #include "wx/object.h" #include "wx/list.h" +#include "wx/arrstr.h" #include "wx/dynarray.h" // declare a linked list of modules @@ -68,7 +68,7 @@ protected: // after that void AddDependency(wxClassInfo *dep) { - wxCHECK_RET( dep, _T("NULL module dependency") ); + wxCHECK_RET( dep, wxT("NULL module dependency") ); m_dependencies.Add(dep); }