diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-07 21:27:53 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-07 21:27:53 +0100 | 
| commit | 05f30fb1dee7cff4812dde6a4fa3efe1cfe364c5 (patch) | |
| tree | a5d45f98dd4ad13c7d6b63b7ca5500cd0798ce19 /plugingui | |
| parent | 3ba947226cde3027e5a6aa03611228203ad85140 (diff) | |
Add missing 'override' keywords.
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/window.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/window.h b/plugingui/window.h index 8b186e9..1fea9c0 100644 --- a/plugingui/window.h +++ b/plugingui/window.h @@ -78,8 +78,8 @@ protected:  	// For the Painter  	friend class Widget; -	void beginPaint(); -	void endPaint(); +	void beginPaint() override; +	void endPaint() override;  	// For the NativeWindow  	friend class NativeWindowX11;  | 
