From 7391ec7a1b03ff8a20c8e1f7c49d941e79ddb01a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 3 Aug 2014 17:55:45 +0000 Subject: [PATCH] Really add "hint" property to wxTextCtrl XRC handler schema description. This was supposed to be done in r76628 but the property was mistakenly added to wxRichTextCtrl instead. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@76998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- misc/schema/xrc_schema.rnc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/schema/xrc_schema.rnc b/misc/schema/xrc_schema.rnc index 27b975414c..abad687b2d 100644 --- a/misc/schema/xrc_schema.rnc +++ b/misc/schema/xrc_schema.rnc @@ -1202,8 +1202,7 @@ wxRichTextCtrl = stdObjectNodeAttributes & stdWindowProperties & [xrc:p="o"] element value {_, t_text }* & - [xrc:p="o"] element maxlength {_, t_integer }* & - [xrc:p="o"] element hint {_, t_text }* + [xrc:p="o"] element maxlength {_, t_integer }* } @@ -1358,7 +1357,8 @@ wxTextCtrl = stdObjectNodeAttributes & stdWindowProperties & [xrc:p="o"] element value {_, t_text }* & - [xrc:p="o"] element maxlength {_, t_integer }* + [xrc:p="o"] element maxlength {_, t_integer }* & + [xrc:p="o"] element hint {_, t_text }* }