diff options
Diffstat (limited to 'vcl/unx/generic/print')
-rw-r--r-- | vcl/unx/generic/print/glyphset.cxx | 4 | ||||
-rw-r--r-- | vcl/unx/generic/print/glyphset.hxx | 2 | ||||
-rw-r--r-- | vcl/unx/generic/print/printerjob.cxx | 4 |
3 files changed, 3 insertions, 7 deletions
diff --git a/vcl/unx/generic/print/glyphset.cxx b/vcl/unx/generic/print/glyphset.cxx index f688cb252dc1..28b8facfced3 100644 --- a/vcl/unx/generic/print/glyphset.cxx +++ b/vcl/unx/generic/print/glyphset.cxx @@ -105,7 +105,7 @@ GlyphSet::AddNotdef (glyph_map_t &rGlyphMap) rGlyphMap[0] = 0; } -bool +void GlyphSet::AddGlyphID ( sal_GlyphId nGlyph, unsigned char* nOutGlyphID, @@ -136,8 +136,6 @@ GlyphSet::AddGlyphID ( aGlyphSet [nGlyph] = nSize; *nOutGlyphSetID = maGlyphList.size(); *nOutGlyphID = aGlyphSet [nGlyph]; - - return true; } OString diff --git a/vcl/unx/generic/print/glyphset.hxx b/vcl/unx/generic/print/glyphset.hxx index a8484bd7a5a8..ff9310523ce7 100644 --- a/vcl/unx/generic/print/glyphset.hxx +++ b/vcl/unx/generic/print/glyphset.hxx @@ -55,7 +55,7 @@ private: unsigned char* nOutGlyphID, sal_Int32* nOutGlyphSetID); bool LookupGlyphID (sal_GlyphId nGlyphId, unsigned char* nOutGlyphID, sal_Int32* nOutGlyphSetID); - bool AddGlyphID (sal_GlyphId nGlyphId, + void AddGlyphID (sal_GlyphId nGlyphId, unsigned char* nOutGlyphID, sal_Int32* nOutGlyphSetID); static void AddNotdef (glyph_map_t &rGlyphMap); diff --git a/vcl/unx/generic/print/printerjob.cxx b/vcl/unx/generic/print/printerjob.cxx index 884bad2eace5..8b5cb726fdf9 100644 --- a/vcl/unx/generic/print/printerjob.cxx +++ b/vcl/unx/generic/print/printerjob.cxx @@ -833,7 +833,7 @@ void PrinterJob::writeJobPatch( osl::File* pFile, const JobData& rJobData ) } } -bool PrinterJob::writeProlog (osl::File* pFile, const JobData& rJobData ) +void PrinterJob::writeProlog (osl::File* pFile, const JobData& rJobData ) { WritePS( pFile, "%%BeginProlog\n" ); @@ -928,8 +928,6 @@ bool PrinterJob::writeProlog (osl::File* pFile, const JobData& rJobData ) "%%EndProlog\n" }; WritePS (pFile, pProlog); - - return true; } bool PrinterJob::writeSetup( osl::File* pFile, const JobData& rJob ) |