From: Chris Tallon Date: Mon, 20 Nov 2006 18:14:57 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=7cb38a94e4f1f64714196696f2839a9e6707dba3;p=vompclient-marten.git *** empty log message *** --- diff --git a/command.cc b/command.cc index e7715f8..3311a43 100644 --- a/command.cc +++ b/command.cc @@ -285,11 +285,12 @@ void Command::postMessageFromOuterSpace(Message* m) logger->log("Command", Log::DEBUG, "PMFOS called"); MessageQueue::postMessage(m); - kill(mainPid, SIGURG); - - // FIXME: Marten - if this actually works on the MVP then you will need - // to come up with the Windows equivalent here. +#ifndef WIN32 + kill(mainPid, SIGURG); +#else + ((RemoteWin*)Remote::getInstance())->Signal(); +#endif } void Command::processMessage(Message* m)