summaryrefslogtreecommitdiff
path: root/vcl/inc/ppdparser.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-07-30 23:20:36 +0200
committerخالد حسني <khaled@libreoffice.org>2023-07-31 02:18:25 +0200
commit3564e11a41c8d3f06c8be387691d5997942e9738 (patch)
tree123dbe3236c1f6e6334aad46f3ac3ae63d6f6e77 /vcl/inc/ppdparser.hxx
parentd7b8dc9f3f866d65c2e1ae3727b3738ae954e325 (diff)
tdf#156230 remove now unused various bit and pieces
Change-Id: I0ad88d402329bbc6882f53f6c20c22b97189a27f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155077 Tested-by: Jenkins Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'vcl/inc/ppdparser.hxx')
-rw-r--r--vcl/inc/ppdparser.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/inc/ppdparser.hxx b/vcl/inc/ppdparser.hxx
index 7ef864bc9cfc..6d2f8c060c5d 100644
--- a/vcl/inc/ppdparser.hxx
+++ b/vcl/inc/ppdparser.hxx
@@ -101,7 +101,6 @@ public:
const OUString& getKey() const { return m_aKey; }
bool isUIKey() const { return m_bUIOption; }
- SetupType getSetupType() const { return m_eSetupType; }
int getOrderDependency() const { return m_nOrderDependency; }
};
@@ -145,9 +144,6 @@ private:
// the full path of the PPD file
OUString m_aFile;
// some basic attributes
- bool m_bColorDevice;
- bool m_bType42Capable;
- sal_uLong m_nLanguageLevel;
rtl_TextEncoding m_aFileEncoding;
@@ -192,10 +188,6 @@ public:
const ::std::vector< PPDConstraint >& getConstraints() const { return m_aConstraints; }
- bool isColorDevice() const { return m_bColorDevice; }
- bool isType42Capable() const { return m_bType42Capable; }
- sal_uLong getLanguageLevel() const { return m_nLanguageLevel; }
-
OUString getDefaultPaperDimension() const;
void getDefaultPaperDimension( int& rWidth, int& rHeight ) const
{ getPaperDimension( getDefaultPaperDimension(), rWidth, rHeight ); }