]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xh_text.cpp
Unicode build fix
[wxWidgets.git] / src / xrc / xh_text.cpp
index 745189008dec2f598a113873fa6f2e1eddaf6e7f..0f3c8cc0f11a8e3b28ce3ee93b53c65b67ac8901 100644 (file)
@@ -8,7 +8,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "xh_text.h"
 #endif
 
@@ -63,6 +63,9 @@ wxObject *wxTextCtrlXmlHandler::DoCreateResource()
 
     SetupWindow(text);
 
+    if (HasParam(wxT("maxlength")))
+        text->SetMaxLength(GetLong(wxT("maxlength")));
+
     return text;
 }