diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-09 11:28:59 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-09 11:28:59 +0200 |
commit | 56d49abc22f61b5343f2e99fa1511508cf1d7aba (patch) | |
tree | 15341205649860a22e66c69beb737ad782108d13 /skins.h | |
parent | 2cd5bf83fb53642aaaee76dc8a80a3e4a6260339 (diff) | |
download | vdr-56d49abc22f61b5343f2e99fa1511508cf1d7aba.tar.gz vdr-56d49abc22f61b5343f2e99fa1511508cf1d7aba.tar.bz2 |
cSkins::QueueMessage() called from a background thread with an empty message now clears all messages that have been previously queued by that thread
Diffstat (limited to 'skins.h')
-rw-r--r-- | skins.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skins.h 1.12 2006/04/09 11:15:24 kls Exp $ + * $Id: skins.h 1.13 2006/04/09 11:23:35 kls Exp $ */ #ifndef __SKINS_H @@ -353,7 +353,9 @@ public: ///< progress displays, where only the most recent message is actually ///< important. ///< Type may only be mtInfo, mtWarning or mtError. A call with mtStatus - ///< will be ignored, as will be one with an empty message. + ///< will be ignored. A call with an empty message from a background thread + ///< removes all queued messages from the calling thread. A call with + ///< an empty message from the main thread will be ignored. void ProcessQueuedMessages(void); ///< Processes the first queued message, if any. void Flush(void); |