[TD]add getExportingAny()

This commit is contained in:
wandererfan
2025-11-02 19:33:58 -05:00
committed by Chris Hennes
parent 23290b8050
commit 4bb8f7e8eb

View File

@@ -136,10 +136,11 @@ public:
TechDraw::DrawPage* getDrawPage();
void setExportingSvg(bool enable);
bool getExportingSvg() { return m_exportingSvg; }
bool getExportingSvg() const { return m_exportingSvg; }
void setExportingPdf(bool enable) { m_exportingPdf = enable; };
bool getExportingPdf() const { return m_exportingPdf; }
bool getExportingAny() const { return getExportingPdf() || getExportingSvg(); }
virtual void refreshViews();