]> git.saurik.com Git - wxWidgets.git/commitdiff
missing reversed orientation assignments
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 3 Dec 2006 15:26:01 +0000 (15:26 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 3 Dec 2006 15:26:01 +0000 (15:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/cmndata.cpp

index 11f936d5815c83396c7bc0c1134a3ce9abc895c9..0c9a9711be2dadc8cab79f6d5d37d86765fbeafc 100644 (file)
@@ -153,6 +153,7 @@ wxPrintData::wxPrintData()
     m_media = wxPRINTMEDIA_DEFAULT;
     m_printMode = wxPRINT_MODE_PRINTER;
     m_printOrientation = wxPORTRAIT;
+    m_printOrientationReversed = false;
     m_printNoCopies = 1;
     m_printCollate = false;
 
@@ -221,6 +222,7 @@ void wxPrintData::operator=(const wxPrintData& data)
     m_printNoCopies = data.m_printNoCopies;
     m_printCollate = data.m_printCollate;
     m_printOrientation = data.m_printOrientation;
+    m_printOrientationReversed = data.m_printOrientationReversed;
     m_printerName = data.m_printerName;
     m_colour = data.m_colour;
     m_duplexMode = data.m_duplexMode;