diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-21 01:38:01 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-21 19:58:45 +0100 |
commit | 3bb278f5bfa1cb28ba051bc6980a93d52f9b29e1 (patch) | |
tree | e8bdc6a946d63f7ea7a343af86a3285982ccb8a8 /vcl | |
parent | 89898395899f4b2935689a5666d0734ba3d63511 (diff) |
unused methods
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/generic/print/printerjob.cxx | 19 | ||||
-rw-r--r-- | vcl/inc/generic/printerjob.hxx | 4 |
2 files changed, 0 insertions, 23 deletions
diff --git a/vcl/generic/print/printerjob.cxx b/vcl/generic/print/printerjob.cxx index 423424dfab83..35633cd2c9b5 100644 --- a/vcl/generic/print/printerjob.cxx +++ b/vcl/generic/print/printerjob.cxx @@ -179,18 +179,6 @@ PrinterJob::IsColorPrinter () const } osl::File* -PrinterJob::GetDocumentHeader () -{ - return mpJobHeader; -} - -osl::File* -PrinterJob::GetDocumentTrailer () -{ - return mpJobTrailer; -} - -osl::File* PrinterJob::GetCurrentPageHeader () { return maHeaderList.back(); @@ -708,13 +696,6 @@ PrinterJob::EndPage () return sal_True; } -sal_uInt32 -PrinterJob::GetErrorCode () -{ - /* TODO */ - return 0; -} - struct less_ppd_key : public ::std::binary_function<double, double, bool> { bool operator()(const PPDKey* left, const PPDKey* right) diff --git a/vcl/inc/generic/printerjob.hxx b/vcl/inc/generic/printerjob.hxx index 62a1c078bc32..aa05394ed995 100644 --- a/vcl/inc/generic/printerjob.hxx +++ b/vcl/inc/generic/printerjob.hxx @@ -101,8 +101,6 @@ public: // for usage in PrinterGfx sal_uInt16 GetPostscriptLevel (const JobData *pJobData = NULL) const; sal_Bool IsColorPrinter () const; - osl::File* GetDocumentHeader (); - osl::File* GetDocumentTrailer (); osl::File* GetCurrentPageHeader (); osl::File* GetCurrentPageBody (); @@ -140,8 +138,6 @@ public: sal_Bool StartPage (const JobData& rJobSetup); sal_Bool EndPage (); - - sal_uInt32 GetErrorCode (); }; } /* namespace psp */ |