X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d6f2a8911e509fd9e61f881cc881a97f5aa05ae8..9ef1ad0d2ccb6dee00b1adc495ce055edd27844b:/src/msw/stattext.cpp diff --git a/src/msw/stattext.cpp b/src/msw/stattext.cpp index 2df67c28b8..a3b52cac70 100644 --- a/src/msw/stattext.cpp +++ b/src/msw/stattext.cpp @@ -100,11 +100,6 @@ bool wxStaticText::Create(wxWindow *parent, return true; } -wxBorder wxStaticText::GetDefaultBorder() const -{ - return wxBORDER_NONE; -} - WXDWORD wxStaticText::MSWGetStyle(long style, WXDWORD *exstyle) const { WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); @@ -220,9 +215,9 @@ void wxStaticText::SetLabel(const wxString& label) if ( HasFlag(wxST_ELLIPSIZE_END) && wxGetOsVersion() == wxOS_WINDOWS_NT ) { - // adding SS_ENDELLIPSIS or SS_ENDELLIPSIS "disables" the correct - // newline handling in static texts: the newlines in the labels are - // shown as square. Thus we don't use it even on newer OS when + // adding SS_ENDELLIPSIS or SS_ENDELLIPSIS "disables" the correct + // newline handling in static texts: the newlines in the labels are + // shown as square. Thus we don't use it even on newer OS when // the static label contains a newline. if ( label.Contains(wxT('\n')) ) styleReal &= ~SS_ENDELLIPSIS;