Renamed the wxWindowCocoaScroller class to wxWindowCocoaScrollView because

it was confusing.  Scroller is the Cocoa term for a scroll bar.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31312 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2005-01-11 01:55:42 +00:00
parent 25b0e7c897
commit f298b203b5
2 changed files with 29 additions and 29 deletions

View File

@@ -19,7 +19,7 @@
#endif //def __OBJC__
class wxWindowCocoaHider;
class wxWindowCocoaScroller;
class wxWindowCocoaScrollView;
// ========================================================================
// wxWindowCocoa
@@ -30,7 +30,7 @@ class WXDLLEXPORT wxWindowCocoa: public wxWindowBase, protected wxCocoaNSView
DECLARE_NO_COPY_CLASS(wxWindowCocoa)
DECLARE_EVENT_TABLE()
friend wxWindow *wxWindowBase::GetCapture();
friend class wxWindowCocoaScroller;
friend class wxWindowCocoaScrollView;
// ------------------------------------------------------------------------
// initialization
// ------------------------------------------------------------------------
@@ -100,7 +100,7 @@ protected:
void SetNSView(WX_NSView cocoaNSView);
WX_NSView m_cocoaNSView;
wxWindowCocoaHider *m_cocoaHider;
wxWindowCocoaScroller *m_cocoaScroller;
wxWindowCocoaScrollView *m_wxCocoaScrollView;
bool m_isInPaint;
static wxWindow *sm_capturedWindow;
virtual void CocoaReplaceView(WX_NSView oldView, WX_NSView newView);