mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Fix typo: AbortProc returns TRUE to continue the print job or FALSE to cancel the print job.
svn path=/trunk/; revision=41092
This commit is contained in:
parent
e7651266fd
commit
3bf062d708
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ VOID GdiSAPCallback(PLDC pldc)
|
|||
|
||||
pldc->CallBackTick = NewTime;
|
||||
|
||||
if ( pldc->pAbortProc(pldc->hDC, 0) )
|
||||
if ( !pldc->pAbortProc(pldc->hDC, 0) )
|
||||
{
|
||||
CancelDC(pldc->hDC);
|
||||
AbortDoc(pldc->hDC);
|
||||
|
|
Loading…
Reference in a new issue