From a4b1be1da5f5a89ff368500b335948175bb74ccb Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Tue, 10 Feb 2015 15:53:58 +0100 Subject: [PATCH] Remove superfluous lines --- src/font.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/font.h b/src/font.h index 936201f..73bb83f 100644 --- a/src/font.h +++ b/src/font.h @@ -86,16 +86,14 @@ public: const Font &operator=(const Font &o); - const char *getName() const; - void setName(const char *value); - - DECL_ATTR( Size, int ) - DECL_ATTR( Bold, bool ) - DECL_ATTR( Italic, bool ) - DECL_ATTR( Color, Color& ) - DECL_ATTR( Shadow, bool ) - DECL_ATTR( Outline, bool ) - DECL_ATTR( OutColor, Color& ) + DECL_ATTR( Name, const char * ) + DECL_ATTR( Size, int ) + DECL_ATTR( Bold, bool ) + DECL_ATTR( Italic, bool ) + DECL_ATTR( Color, Color& ) + DECL_ATTR( Shadow, bool ) + DECL_ATTR( Outline, bool ) + DECL_ATTR( OutColor, Color& ) DECL_ATTR_STATIC( DefaultName, const char* ) DECL_ATTR_STATIC( DefaultSize, int )