diff options
| author | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-16 12:00:50 +1000 | 
|---|---|---|
| committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-16 12:00:50 +1000 | 
| commit | 2292ee7c6a128142f817d23fd99f3f0425328c9c (patch) | |
| tree | 4f1c4c1d240fbbecb16047afefdfb148c1e5a2c8 /include/Platform.h | |
| parent | 8302984f669d14e116b71aad34e38cd4a610edeb (diff) | |
| download | scintilla-mirror-2292ee7c6a128142f817d23fd99f3f0425328c9c.tar.gz | |
Remove dead code that was a remnant of Carbon support.
Diffstat (limited to 'include/Platform.h')
| -rw-r--r-- | include/Platform.h | 16 | 
1 files changed, 0 insertions, 16 deletions
diff --git a/include/Platform.h b/include/Platform.h index 7f2f37542..3920f7321 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -345,22 +345,10 @@ typedef void (*CallBackAction)(void*);  class Window {  protected:  	WindowID wid; -#if PLAT_MACOSX -	void *windowRef; -	void *control; -#endif  public:  	Window() : wid(0), cursorLast(cursorInvalid) { -#if PLAT_MACOSX -	  windowRef = 0; -	  control = 0; -#endif  	}  	Window(const Window &source) : wid(source.wid), cursorLast(cursorInvalid) { -#if PLAT_MACOSX -	  windowRef = 0; -	  control = 0; -#endif  	}  	virtual ~Window();  	Window &operator=(WindowID wid_) { @@ -383,10 +371,6 @@ public:  	void SetCursor(Cursor curs);  	void SetTitle(const char *s);  	PRectangle GetMonitorRect(Point pt); -#if PLAT_MACOSX -	void SetWindow(void *ref) { windowRef = ref; } -	void SetControl(void *_control) { control = _control; } -#endif  private:  	Cursor cursorLast;  };  | 
