From: Václav Slavík Date: Sat, 28 Oct 2006 15:16:45 +0000 (+0000) Subject: removed unused GetScrollbarArrowSize() version X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2dd9690e88b8d081f49ec63375b210f5e6639a45?hp=1e613d2282dc20aec41c54bd9bd9968422621d71 removed unused GetScrollbarArrowSize() version git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/themes/gtk.cpp b/src/univ/themes/gtk.cpp index 1b66387049..07208440a8 100644 --- a/src/univ/themes/gtk.cpp +++ b/src/univ/themes/gtk.cpp @@ -314,26 +314,6 @@ protected: // draw inner GTK shadow void DrawInnerShadedRect(wxDC& dc, wxRect *rect); -#if wxUSE_SCROLLBAR - // returns the size of the arrow for the scrollbar (depends on - // orientation) - wxSize GetScrollbarArrowSize(const wxScrollBar *scrollbar) const - { - wxSize size; - if ( scrollbar->IsVertical() ) - { - size = m_sizeScrollbarArrow; - } - else - { - size.x = m_sizeScrollbarArrow.y; - size.y = m_sizeScrollbarArrow.x; - } - - return size; - } -#endif // wxUSE_SCROLLBAR - // get the line wrap indicator bitmap wxBitmap GetLineWrapBitmap() const;