Changeset 10469 for trunk/src/gdi32/devcontext.cpp
- Timestamp:
- Feb 18, 2004, 3:05:48 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/devcontext.cpp
r10442 r10469 1 /* $Id: devcontext.cpp,v 1. 2 2004-02-10 15:35:38 sandervl Exp $ */1 /* $Id: devcontext.cpp,v 1.3 2004-02-18 14:05:48 sandervl Exp $ */ 2 2 3 3 /* … … 78 78 dprintf(("Rename printer %s to PM Queue %s", lpszDevice, szDevice)); 79 79 lpszDevice = szDevice; 80 80 81 //Must ignore port name here or else the wrong queue might be used 81 lpszOutput = NULL; 82 //(unless we are told to print to file) 83 if (lpszOutput && strcmp(lpszOutput, "FILE:") != 0 && strcmp(lpszOutput, "FILE") != 0) 84 lpszOutput = NULL; 82 85 } 83 86 } … … 198 201 lpszDevice = szDevice; 199 202 //Must ignore port name here or else the wrong queue might be used 200 lpszOutput = NULL; 203 //(unless we are told to print to file) 204 if (lpszOutput && strcmp(lpszOutput, "FILE:") != 0 && strcmp(lpszOutput, "FILE") != 0) 205 lpszOutput = NULL; 201 206 } 202 207 }
Note:
See TracChangeset
for help on using the changeset viewer.