X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/105fbe1ffa8968cb85fd2cac7192957e522d17ba..b7bd58d09a01d718b00091f5e3089e6868da89e1:/src/motif/stattext.cpp?ds=sidebyside diff --git a/src/motif/stattext.cpp b/src/motif/stattext.cpp index f233a51080..917c3bf34a 100644 --- a/src/motif/stattext.cpp +++ b/src/motif/stattext.cpp @@ -12,10 +12,6 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifdef __VMS -#define XtDisplay XTDISPLAY -#endif - #if wxUSE_STATTEXT #include "wx/stattext.h" @@ -30,8 +26,6 @@ #include "wx/motif/private.h" -IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) - bool wxStaticText::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, @@ -51,7 +45,7 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id, (Widget) wxCreateBorderWidget( (WXWidget)parentWidget, style ); m_labelWidget = - XtVaCreateManagedWidget (wxConstCast(name.mb_str(), char), + XtVaCreateManagedWidget (name.mb_str(), xmLabelWidgetClass, borderWidget ? borderWidget : parentWidget, wxFont::GetFontTag(), m_font.GetFontTypeC(XtDisplay(parentWidget)), @@ -80,8 +74,8 @@ void wxStaticText::SetLabel(const wxString& label) { m_labelOrig = label; // save original label - // Motif does not support neither ellipsize nor markup in static text: - DoSetLabel(GetEllipsizedLabelWithoutMarkup()); + // Motif does not support ellipsized labels natively + DoSetLabel(GetEllipsizedLabel()); } // for wxST_ELLIPSIZE_* support: