Renamed the port where app_server messages are received from "w_rcv_port" to "w<app_server"

to match the name of the application's port for that task.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15142 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-11-25 12:20:56 +00:00
parent 887f41e646
commit 147bfa2a75

View File

@ -2087,7 +2087,7 @@ BWindow::_InitData(BRect frame, const char* title, window_look look,
// Create the server-side window
port_id receivePort = create_port(B_LOOPER_PORT_DEFAULT_CAPACITY, "w_rcv_port");
port_id receivePort = create_port(B_LOOPER_PORT_DEFAULT_CAPACITY, "w<app_server");
if (receivePort < B_OK) {
debugger("Could not create BWindow's receive port, used for interacting with the app_server!");
delete this;