// Purpose: XRC resource for wxStaticText
// Author: Bob Mitchell
// Created: 2000/03/21
-// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
SetupWindow(text);
+ long wrap = GetLong(wxT("wrap"), -1);
+ if (wrap != -1)
+ text->Wrap(wrap);
+
return text;
}