Removed third argument from calls to ServerWindow::SendMessageToClient() - it's predefined

to "false" anyway, and will be removed shortly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15041 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-11-20 15:52:48 +00:00
parent b223f78041
commit ece36066af
2 changed files with 9 additions and 9 deletions

View File

@ -827,7 +827,7 @@ void
Layer::MouseDown(const BMessage *msg)
{
if (Window() && !IsTopLayer()) {
Window()->SendMessageToClient(msg, fViewToken, false);
Window()->SendMessageToClient(msg, fViewToken);
}
}
@ -835,7 +835,7 @@ void
Layer::MouseUp(const BMessage *msg)
{
if (Window() && !IsTopLayer()) {
Window()->SendMessageToClient(msg, fViewToken, false);
Window()->SendMessageToClient(msg, fViewToken);
}
}
@ -843,7 +843,7 @@ void
Layer::MouseMoved(const BMessage *msg)
{
if (Window() && !IsTopLayer()) {
Window()->SendMessageToClient(msg, fViewToken, false);
Window()->SendMessageToClient(msg, fViewToken);
}
}
@ -851,7 +851,7 @@ void
Layer::MouseWheelChanged(const BMessage *msg)
{
if (Window() && !IsTopLayer()) {
Window()->SendMessageToClient(msg, fViewToken, false);
Window()->SendMessageToClient(msg, fViewToken);
}
}

View File

@ -218,7 +218,7 @@ WinBorder::MoveBy(float x, float y)
BMessage msg(B_WINDOW_MOVED);
msg.AddInt64("when", system_time());
msg.AddPoint("where", Frame().LeftTop());
Window()->SendMessageToClient(&msg, B_NULL_TOKEN, false);
Window()->SendMessageToClient(&msg, B_NULL_TOKEN);
}
@ -275,7 +275,7 @@ WinBorder::ResizeBy(float x, float y)
msg.AddInt64("when", system_time());
msg.AddInt32("width", frame.IntegerWidth());
msg.AddInt32("height", frame.IntegerHeight());
Window()->SendMessageToClient(&msg, B_NULL_TOKEN, false);
Window()->SendMessageToClient(&msg, B_NULL_TOKEN);
}
@ -597,7 +597,7 @@ WinBorder::WorkspaceActivated(int32 index, bool active)
activatedMsg.AddInt32("workspace", index);
activatedMsg.AddBool("active", active);
Window()->SendMessageToClient(&activatedMsg, B_NULL_TOKEN, false);
Window()->SendMessageToClient(&activatedMsg, B_NULL_TOKEN);
}
@ -611,7 +611,7 @@ WinBorder::WorkspacesChanged(uint32 oldWorkspaces, uint32 newWorkspaces)
changedMsg.AddInt32("old", oldWorkspaces);
changedMsg.AddInt32("new", newWorkspaces);
Window()->SendMessageToClient(&changedMsg, B_NULL_TOKEN, false);
Window()->SendMessageToClient(&changedMsg, B_NULL_TOKEN);
}
@ -620,7 +620,7 @@ WinBorder::Activated(bool active)
{
BMessage msg(B_WINDOW_ACTIVATED);
msg.AddBool("active", active);
Window()->SendMessageToClient(&msg, B_NULL_TOKEN, false);
Window()->SendMessageToClient(&msg, B_NULL_TOKEN);
}