* in case we do not show the config window,
still distinguish between config page and config job git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25910 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
e8991ce3ac
commit
ced75fc6b0
@ -64,7 +64,13 @@ status_t PrintServerApp::async_thread(void* data)
|
||||
w->Go();
|
||||
} else {
|
||||
BMessage reply(*msg);
|
||||
if (printer->ConfigurePage(reply) == B_OK)
|
||||
status_t status = B_ERROR;
|
||||
if (msg->what == PSRV_SHOW_PAGE_SETUP)
|
||||
status = printer->ConfigurePage(reply);
|
||||
else
|
||||
status = printer->ConfigureJob(reply);
|
||||
|
||||
if (status == B_OK)
|
||||
sender.SetReply(&reply);
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user