diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:56:44 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:56:44 +0000 |
commit | 9431b714eb1c4a3d15e4dbfc761539bbde72645c (patch) | |
tree | 233ad71b1b1189f37a8f7fb92c3e6780951fbbf1 /psprint/source | |
parent | 34d1242aa11ce75005280accda4027f0c27c890f (diff) |
INTEGRATION: CWS warnings01 (1.32.10); FILE MERGED
2006/05/23 15:28:41 sb 1.32.10.3: RESYNC: (1.33-1.34); FILE MERGED
2006/01/25 17:09:54 sb 1.32.10.2: RESYNC: (1.32-1.33); FILE MERGED
2005/10/28 10:53:44 pl 1.32.10.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'psprint/source')
-rw-r--r-- | psprint/source/printergfx/printerjob.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/psprint/source/printergfx/printerjob.cxx b/psprint/source/printergfx/printerjob.cxx index c14e19284f42..74c842c1d1b7 100644 --- a/psprint/source/printergfx/printerjob.cxx +++ b/psprint/source/printergfx/printerjob.cxx @@ -4,9 +4,9 @@ * * $RCSfile: printerjob.cxx,v $ * - * $Revision: 1.36 $ + * $Revision: 1.37 $ * - * last change: $Author: hr $ $Date: 2006-06-09 12:16:58 $ + * last change: $Author: hr $ $Date: 2006-06-19 10:56:44 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -94,7 +94,7 @@ namespace psp sal_Bool AppendPS (FILE* pDst, osl::File* pSrc, sal_uChar* pBuffer, - sal_uInt64 nBlockSize = nBLOCKSIZE) + sal_uInt32 nBlockSize = nBLOCKSIZE) { if ((pDst == NULL) || (pSrc == NULL)) return sal_False; @@ -112,7 +112,7 @@ AppendPS (FILE* pDst, osl::File* pSrc, sal_uChar* pBuffer, { pSrc->read (pBuffer, nBlockSize, nIn); if (nIn > 0) - nOut = fwrite (pBuffer, 1, nIn, pDst); + nOut = fwrite (pBuffer, 1, sal::static_int_cast<sal_uInt32>(nIn), pDst); } while ((nIn > 0) && (nIn == nOut)); @@ -377,7 +377,7 @@ namespace psp // get locale invariant, 7bit clean current local time string sal_Char* -getLocalTime(sal_Char* pBuffer, sal_uInt32 nBufSize) +getLocalTime(sal_Char* pBuffer) { time_t nTime = time (NULL); struct tm aTime; @@ -439,7 +439,7 @@ PrinterJob::StartJob ( // Creation Date (locale independent local time) sal_Char pCreationDate [256]; WritePS (mpJobHeader, "%%CreationDate: "); - WritePS (mpJobHeader, getLocalTime(pCreationDate, sizeof(pCreationDate))); + WritePS (mpJobHeader, getLocalTime(pCreationDate)); // Document Title aFilterWS = WhitespaceToSpace( rJobName, FALSE ); @@ -637,7 +637,7 @@ PrinterJob::InitPaperSize (const JobData& rJobSetup) sal_Bool -PrinterJob::StartPage (const JobData& rJobSetup, sal_Bool bNewJobData) +PrinterJob::StartPage (const JobData& rJobSetup) { InitPaperSize (rJobSetup); |