]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/stattext_osx.cpp
removed superfluous ;
[wxWidgets.git] / src / osx / stattext_osx.cpp
index 6968b2778a5e3079fe533473f33561fa6c2015a0..1ff9003570ce5765f794f655d45d705870a02ef6 100644 (file)
@@ -57,7 +57,11 @@ void wxStaticText::SetLabel(const wxString& label)
     m_labelOrig = label;
 
     // middle/end ellipsization is handled by the OS:
     m_labelOrig = label;
 
     // middle/end ellipsization is handled by the OS:
-    if ( HasFlag(wxST_ELLIPSIZE_END) || HasFlag(wxST_ELLIPSIZE_MIDDLE) )
+    if ( HasFlag(wxST_ELLIPSIZE_END) || HasFlag(wxST_ELLIPSIZE_MIDDLE)
+#if wxOSX_USE_COCOA // Cocoa has all three modes
+         || HasFlag(wxST_ELLIPSIZE_START)
+#endif
+    )
     {
         // remove markup
         wxString str(label);
     {
         // remove markup
         wxString str(label);