diff options
Diffstat (limited to 'macosx/ScintillaMacOSX.h')
-rw-r--r-- | macosx/ScintillaMacOSX.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/ScintillaMacOSX.h b/macosx/ScintillaMacOSX.h index fd20be2d2..d9da7e295 100644 --- a/macosx/ScintillaMacOSX.h +++ b/macosx/ScintillaMacOSX.h @@ -89,8 +89,8 @@ class ScintillaMacOSX : public ScintillaBase, public TView bool capturedMouse; // true if scintilla initiated the drag session - bool inDragSession() { return inDragDrop == ddDragging; }; - bool isTracking; + bool inDragSession() { return inDragDrop == ddDragging; }; + bool isTracking; // Private so ScintillaMacOSX objects can not be copied ScintillaMacOSX(const ScintillaMacOSX &) : ScintillaBase(), TView( NULL ) {} @@ -113,7 +113,7 @@ public: private: virtual void Initialise(); virtual void Finalise(); - + // pasteboard support bool GetPasteboardData(PasteboardRef &pasteBoard, SelectionText *selectedText, bool *isFileURL); @@ -168,7 +168,7 @@ public: // Public for scintilla_send_message void Resize(int width, int height); static pascal void LiveScrollHandler( ControlHandle control, SInt16 part ); bool ScrollBarHit(HIPoint location); - + virtual void NotifyChange(); virtual void NotifyFocus(bool focus); virtual void NotifyParent(SCNotification scn); @@ -227,7 +227,7 @@ public: static HIViewRef Create(); private: static OSStatus Construct( HIViewRef inControl, TView** outView ); - + }; |