aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-03-15 20:12:08 +1100
committernyamatongwe <unknown>2013-03-15 20:12:08 +1100
commitba75aab7359d5edaa7a37b9e21f3219bf9683c71 (patch)
tree078839c0d89f64c20a4b45d393e6fee5311adb8f /cocoa/ScintillaCocoa.mm
parentd0566ab8b9c42c13d116af090a0e2cb21e4c9575 (diff)
downloadscintilla-mirror-ba75aab7359d5edaa7a37b9e21f3219bf9683c71.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);
- }
- */
}
//--------------------------------------------------------------------------------------------------