From 558721bfa2b9ce3f00dace6cdf775f295671871a Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 20 Feb 2011 08:43:25 +1100 Subject: Avoid some cppcheck warnings. --- include/Platform.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/Platform.h b/include/Platform.h index ea9f97298..b70ffc3ce 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -255,8 +255,8 @@ class Palette { int allocatedLen; #endif // Private so Palette objects can not be copied - Palette(const Palette &) {} - Palette &operator=(const Palette &) { return *this; } + Palette(const Palette &); + Palette &operator=(const Palette &); public: #if PLAT_WIN void *hpal; @@ -288,8 +288,8 @@ protected: int ascent; #endif // Private so Font objects can not be copied - Font(const Font &) {} - Font &operator=(const Font &) { fid=0; return *this; } + Font(const Font &); + Font &operator=(const Font &); public: Font(); virtual ~Font(); -- cgit v1.2.3