diff options
author | nyamatongwe <devnull@localhost> | 2013-03-15 20:12:08 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-03-15 20:12:08 +1100 |
commit | 0b1fa27bd4fbfba6e25c7d9bd439b15b656f9d5c (patch) | |
tree | 4922a4062f1630c4f8089d157b1e1bf7a3961194 | |
parent | a42e74a667b28729b7b2e7b29d9c1c8b6a055a94 (diff) | |
download | scintilla-mirror-0b1fa27bd4fbfba6e25c7d9bd439b15b656f9d5c.tar.gz |
Remove dead code.
-rw-r--r-- | cocoa/ScintillaCocoa.h | 1 | ||||
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/cocoa/ScintillaCocoa.h b/cocoa/ScintillaCocoa.h index 87702f51e..27ce11fd8 100644 --- a/cocoa/ScintillaCocoa.h +++ b/cocoa/ScintillaCocoa.h @@ -49,7 +49,6 @@ #include "Selection.h" #include "PositionCache.h" #include "Editor.h" -//#include "ScintillaCallTip.h" #include "ScintillaBase.h" diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 8a31b40d3..fa361df01 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -1470,16 +1470,6 @@ bool ScintillaCocoa::GetPasteboardData(NSPasteboard* board, SelectionText* selec void ScintillaCocoa::SetMouseCapture(bool on) { capturedMouse = on; - /* - if (mouseDownCaptures) - { - if (capturedMouse) - WndProc(SCI_SETCURSOR, Window::cursorArrow, 0); - else - // Reset to normal. Actual image will be set on mouse move. - WndProc(SCI_SETCURSOR, (unsigned int) SC_CURSORNORMAL, 0); - } - */ } //-------------------------------------------------------------------------------------------------- |