]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix after wxTextEntry::SetMargins() changes.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Sep 2009 14:31:17 +0000 (14:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Sep 2009 14:31:17 +0000 (14:31 +0000)
We need to include wx/gdicmn.h to define wxPoint which is now used in
wx/textentry.h, it is not necessarily already included and in fact compilation
was broken in PCH-less build.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/textentry.h

index e09014be6ffc8149d09d95276c0c8c48bd28ce2d..130446a4a316071a6b06fe17ed5d00eba0ab0982 100644 (file)
@@ -19,6 +19,8 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString;
 class WXDLLIMPEXP_FWD_CORE wxTextEntryHintData;
 class WXDLLIMPEXP_FWD_CORE wxWindow;
 
+#include "wx/gdicmn.h"              // for wxPoint
+
 // ----------------------------------------------------------------------------
 // wxTextEntryBase
 // ----------------------------------------------------------------------------