From 23f554037216696c0ce67cad40cadb95c6e02167 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 23 Mar 2014 09:50:03 +1100 Subject: Remove method no longer needed. --- src/XPM.cxx | 6 ------ src/XPM.h | 1 - 2 files changed, 7 deletions(-) (limited to 'src') diff --git a/src/XPM.cxx b/src/XPM.cxx index 4191e1e92..e1d91846d 100644 --- a/src/XPM.cxx +++ b/src/XPM.cxx @@ -61,11 +61,9 @@ XPM::XPM(const char *const *linesForm) { } XPM::~XPM() { - Clear(); } void XPM::Init(const char *textForm) { - Clear(); // Test done is two parts to avoid possibility of overstepping the memory // if memcmp implemented strangely. Must be 4 bytes at least at destination. if ((0 == memcmp(textForm, "/* X", 4)) && (0 == memcmp(textForm, "/* XPM */", 9))) { @@ -81,7 +79,6 @@ void XPM::Init(const char *textForm) { } void XPM::Init(const char *const *linesForm) { - Clear(); height = 1; width = 1; nColours = 1; @@ -125,9 +122,6 @@ void XPM::Init(const char *const *linesForm) { } } -void XPM::Clear() { -} - void XPM::Draw(Surface *surface, PRectangle &rc) { if (pixels.empty()) { return; diff --git a/src/XPM.h b/src/XPM.h index 47f5c52f1..631fe1386 100644 --- a/src/XPM.h +++ b/src/XPM.h @@ -30,7 +30,6 @@ public: ~XPM(); void Init(const char *textForm); void Init(const char *const *linesForm); - void Clear(); /// Decompose image into runs and use FillRectangle for each run void Draw(Surface *surface, PRectangle &rc); int GetHeight() const { return height; } -- cgit v1.2.3