diff options
author | nyamatongwe <unknown> | 2011-02-02 21:59:02 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-02-02 21:59:02 +1100 |
commit | f9ea03b65b8bf43301f9cf12600e4133700e5f1c (patch) | |
tree | 3e336e81ae86c98caa98600c00163ddb6a682009 /macosx/ScintillaMacOSX.h | |
parent | 4bfbd24479f6f2ec260e2fbc37784cf30416e098 (diff) | |
download | scintilla-mirror-f9ea03b65b8bf43301f9cf12600e4133700e5f1c.tar.gz |
Made work on Carbon bymaking a simple form of ClearSelection
that fits in command table.
Diffstat (limited to 'macosx/ScintillaMacOSX.h')
-rw-r--r-- | macosx/ScintillaMacOSX.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/macosx/ScintillaMacOSX.h b/macosx/ScintillaMacOSX.h index 78dffe87f..df3e1c8e1 100644 --- a/macosx/ScintillaMacOSX.h +++ b/macosx/ScintillaMacOSX.h @@ -193,6 +193,9 @@ public: // Public for scintilla_send_message virtual void CreateCallTipWindow(PRectangle rc); virtual void AddToPopUp(const char *label, int cmd = 0, bool enabled = true); virtual void ClaimSelection(); + void ClearSelectionSimple() { + ClearSelection(); + } static sptr_t DirectFunction(ScintillaMacOSX *sciThis, unsigned int iMessage, uptr_t wParam, sptr_t lParam); |