diff options
author | nyamatongwe <devnull@localhost> | 2011-04-06 12:55:28 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-04-06 12:55:28 +1000 |
commit | 3ffd5d2e5c272dcd933bb898eed507511abf64e4 (patch) | |
tree | 4a529f4b1a7f7e0b4ce6cce5101c1b50c9a9304e | |
parent | e2747a702b6e68d68c5b2979c50541ea6f7ca299 (diff) | |
download | scintilla-mirror-3ffd5d2e5c272dcd933bb898eed507511abf64e4.tar.gz |
Avoid warning for extra semi-colons and normalised whitespace.
-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; |