// Author: Stefan Csomor
// Modified by:
// Created: 04/01/98
-// RCS-ID: $Id: stattext.cpp 54845 2008-07-30 14:52:41Z SC $
+// RCS-ID: $Id$
// Copyright: (c) Stefan Csomor
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include <stdio.h>
-IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl)
-
bool wxStaticText::Create( wxWindow *parent,
wxWindowID id,
#endif
)
{
- // remove markup
- wxString str(label);
- if (HasFlag(wxST_MARKUP))
- str = RemoveMarkup(label);
-
- // and leave ellipsization to the OS
- DoSetLabel(str);
+ // leave ellipsization to the OS
+ DoSetLabel(GetLabelWithoutMarkup());
}
else // not supported natively
{
void wxStaticText::DoSetLabel(const wxString& label)
{
- m_labelOrig = label;
m_label = RemoveMnemonics(label);
m_peer->SetLabel(m_label , GetFont().GetEncoding() );
}