diff options
author | nyamatongwe <unknown> | 2011-04-06 12:55:28 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-04-06 12:55:28 +1000 |
commit | 046dc2bb0faa9f98c59679420388ebd37d326dcc (patch) | |
tree | a0e6ed1ef9f137c09343fdeb539c80ce37cc0523 /include/Platform.h | |
parent | 7923fd9f95575ac5e52ca72b1e9af5d97019ad6c (diff) | |
download | scintilla-mirror-046dc2bb0faa9f98c59679420388ebd37d326dcc.tar.gz |
Avoid warning for extra semi-colons and normalised whitespace.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Platform.h b/include/Platform.h index b70ffc3ce..fd36a322e 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -302,7 +302,7 @@ public: // Alias another font - caller guarantees not to Release void SetID(FontID fid_) { fid = fid_; } friend class Surface; - friend class SurfaceImpl; + friend class SurfaceImpl; }; /** @@ -411,8 +411,8 @@ public: void SetTitle(const char *s); PRectangle GetMonitorRect(Point pt); #if PLAT_MACOSX - void SetWindow(void *ref) { windowRef = ref; }; - void SetControl(void *_control) { control = _control; }; + void SetWindow(void *ref) { windowRef = ref; } + void SetControl(void *_control) { control = _control; } #endif private: Cursor cursorLast; |