summaryrefslogtreecommitdiff
path: root/sw/inc/printdata.hxx
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-12-14 12:36:46 +0100
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-12-18 09:35:29 +0100
commit6cdf523f179f3e7ed94267502a5fe3d1247398cc (patch)
tree6c0e34dce3b4d1311a580cc783991484ff278199 /sw/inc/printdata.hxx
parenta3a9ae3f564be4dd6549fe5708a593ea09d1e79c (diff)
[API CHANGE] tdf#158041 Remove unused drawing printing option from sw
Change-Id: I95f81f166ab9d75622c83672101925894b2f2e7d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160774 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'sw/inc/printdata.hxx')
-rw-r--r--sw/inc/printdata.hxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/sw/inc/printdata.hxx b/sw/inc/printdata.hxx
index b6be2951f611..7dcdbdbb964a 100644
--- a/sw/inc/printdata.hxx
+++ b/sw/inc/printdata.hxx
@@ -55,7 +55,7 @@ class SwPrintData
public:
- bool m_bPrintGraphic, m_bPrintDraw, m_bPrintControl, m_bPrintPageBackground,
+ bool m_bPrintGraphic, m_bPrintControl, m_bPrintPageBackground,
m_bPrintBlackFont,
//#i81434# - printing of hidden text
m_bPrintHiddenText, m_bPrintTextPlaceholder,
@@ -73,7 +73,6 @@ public:
m_pRenderData = nullptr;
m_bPrintGraphic =
- m_bPrintDraw =
m_bPrintControl =
m_bPrintLeftPages =
m_bPrintRightPages =
@@ -102,7 +101,6 @@ public:
{
return
m_bPrintGraphic == rData.m_bPrintGraphic &&
- m_bPrintDraw == rData.m_bPrintDraw &&
m_bPrintControl == rData.m_bPrintControl &&
m_bPrintPageBackground== rData.m_bPrintPageBackground &&
m_bPrintBlackFont == rData.m_bPrintBlackFont &&
@@ -125,7 +123,6 @@ public:
void SetRenderData( const SwRenderData *pData ) { m_pRenderData = pData; }
bool IsPrintGraphic() const { return m_bPrintGraphic; }
- bool IsPrintDraw() const { return m_bPrintDraw; }
bool IsPrintControl() const { return m_bPrintControl; }
bool IsPrintLeftPage() const { return m_bPrintLeftPages; }
bool IsPrintRightPage() const { return m_bPrintRightPages; }
@@ -142,7 +139,6 @@ public:
bool IsPrintTextPlaceholder() const { return m_bPrintTextPlaceholder; }
void SetPrintGraphic( bool b ) { doSetModified(); m_bPrintGraphic = b; }
- void SetPrintDraw( bool b ) { doSetModified(); m_bPrintDraw = b; }
void SetPrintControl( bool b ) { doSetModified(); m_bPrintControl = b; }
void SetPrintLeftPage( bool b ) { doSetModified(); m_bPrintLeftPages = b; }
void SetPrintRightPage( bool b ) { doSetModified(); m_bPrintRightPages = b; }
@@ -186,7 +182,6 @@ public:
bool IsPrintRightPages() const;
bool IsPrintEmptyPages( bool bIsPDFExport ) const;
bool IsPrintGraphics() const;
- bool IsPrintDrawings() const;
};
/** A class that stores temporary data that is needed for rendering the document.