* 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:
Karsten Heimrich 2008-06-10 18:47:07 +00:00
parent e8991ce3ac
commit ced75fc6b0

View File

@ -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 {