aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-03-15 20:12:08 +1100
committernyamatongwe <devnull@localhost>2013-03-15 20:12:08 +1100
commit0b1fa27bd4fbfba6e25c7d9bd439b15b656f9d5c (patch)
tree4922a4062f1630c4f8089d157b1e1bf7a3961194 /cocoa/ScintillaCocoa.mm
parenta42e74a667b28729b7b2e7b29d9c1c8b6a055a94 (diff)
downloadscintilla-mirror-0b1fa27bd4fbfba6e25c7d9bd439b15b656f9d5c.tar.gz
Remove dead code.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r--cocoa/ScintillaCocoa.mm10
1 files changed, 0 insertions, 10 deletions
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);
- }
- */
}
//--------------------------------------------------------------------------------------------------