diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Platform.h | 6 | ||||
| -rw-r--r-- | include/WindowAccessor.h | 2 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/include/Platform.h b/include/Platform.h index b5d6d9bf8..ea9f97298 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -314,8 +314,8 @@ private:  	Surface(const Surface &) {}  	Surface &operator=(const Surface &) { return *this; }  public: -	Surface() {}; -	virtual ~Surface() {}; +	Surface() {} +	virtual ~Surface() {}  	static Surface *Allocate();  	virtual void Init(WindowID wid)=0; @@ -474,7 +474,7 @@ public:   */  class DynamicLibrary {  public: -	virtual ~DynamicLibrary() {}; +	virtual ~DynamicLibrary() {}  	/// @return Pointer to function "name", or NULL on failure.  	virtual Function FindFunction(const char *name) = 0; diff --git a/include/WindowAccessor.h b/include/WindowAccessor.h index 6f265f658..4a8640748 100644 --- a/include/WindowAccessor.h +++ b/include/WindowAccessor.h @@ -53,7 +53,7 @@ public:  	}  	void StartAt(unsigned int start, char chMask=31); -	void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; chWhile = chWhile_; }; +	void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; chWhile = chWhile_; }  	unsigned int GetStartSegment() { return startSeg; }  	void StartSegment(unsigned int pos);  	void ColourTo(unsigned int pos, int chAttr);  | 
