]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/renderg.cpp
non-pch build fix
[wxWidgets.git] / src / generic / renderg.cpp
index 6c0ce55de44a58b374f525f7d7b084d32cf4aa8a..0024bcec60cd8ced94886f18953fe0825de68065 100644 (file)
@@ -398,6 +398,7 @@ wxRendererGeneric::DrawHeaderButtonContents(wxWindow *win,
 
         // truncate and add an ellipsis (...) if the text is too wide.
         const int availWidth = rect.width - labelWidth;
+#if wxUSE_CONTROLS
         if ( tw > availWidth )
         {
             label = wxControl::Ellipsize(label,
@@ -408,6 +409,7 @@ wxRendererGeneric::DrawHeaderButtonContents(wxWindow *win,
             tw = dc.GetTextExtent(label).x;
         }
         else // enough space, we can respect alignment
+#endif // wxUSE_CONTROLS
         {
             switch (params->m_labelAlignment)
             {