[TD]add getExportingAny()

This commit is contained in:
wandererfan
2025-11-17 22:28:06 -06:00
committed by Chris Hennes
parent 23290b8050
commit 4bb8f7e8eb
+2 -1
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();