From: Chris Tallon Date: Sun, 25 May 2008 17:02:29 +0000 (+0000) Subject: Removal of Message::REDRAW and BoxStack handler for it X-Git-Tag: r0-3-0~17 X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=19e9d87f8664b75f609b2c03d5b9c5b22174ba1c;p=vompclient.git Removal of Message::REDRAW and BoxStack handler for it --- diff --git a/boxstack.cc b/boxstack.cc index bcace42..2d33758 100644 --- a/boxstack.cc +++ b/boxstack.cc @@ -535,16 +535,5 @@ void BoxStack::processMessage(Message* m) update(toAdd); break; } - case Message::REDRAW: - { - Log::getInstance()->log("BoxStack", Log::DEBUG, "=================================================================="); - Log::getInstance()->log("BoxStack", Log::DEBUG, "DEPRECATED BOXSTACK REDRAW MESSAGE CALL --------------------------"); - Log::getInstance()->log("BoxStack", Log::DEBUG, "=================================================================="); - abort(); - Boxx* toRedraw = (Boxx*)m->from; - Region* toRedrawRegion = (Region*)m->parameter; - update(toRedraw, toRedrawRegion); - break; - } } } diff --git a/message.h b/message.h index 1507b61..9b2b3ef 100644 --- a/message.h +++ b/message.h @@ -57,7 +57,6 @@ class Message const static ULONG ADD_VIEW = 12; const static ULONG STREAM_END = 13; const static ULONG REDRAW_LANG = 14; - const static ULONG REDRAW = 15; const static ULONG EPG = 16; const static ULONG EPG_CLOSE = 17; const static ULONG CHANGED_OPTIONS = 18;