mirror of
https://review.haiku-os.org/haiku
synced 2025-02-22 21:48:35 +01:00
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:
parent
b223f78041
commit
ece36066af
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user