projects
/
vompclient-marten.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb22fd3
)
*** empty log message ***
author
Chris Tallon
<chris@vomp.tv>
Mon, 20 Nov 2006 18:14:57 +0000
(18:14 +0000)
committer
Chris Tallon
<chris@vomp.tv>
Mon, 20 Nov 2006 18:14:57 +0000
(18:14 +0000)
command.cc
patch
|
blob
|
history
diff --git
a/command.cc
b/command.cc
index e7715f87a95450b78c028daa957ee83f21aca606..3311a43333794c84d7736e4beefc2fe345abae30 100644
(file)
--- 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)