aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-04-06 12:55:28 +1000
committernyamatongwe <unknown>2011-04-06 12:55:28 +1000
commit046dc2bb0faa9f98c59679420388ebd37d326dcc (patch)
treea0e6ed1ef9f137c09343fdeb539c80ce37cc0523
parent7923fd9f95575ac5e52ca72b1e9af5d97019ad6c (diff)
downloadscintilla-mirror-046dc2bb0faa9f98c59679420388ebd37d326dcc.tar.gz
Avoid warning for extra semi-colons and normalised whitespace.
-rw-r--r--include/Platform.h6
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;