]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/dcpsg.cpp
A few more things are back to work.
[wxWidgets.git] / src / generic / dcpsg.cpp
index a611e4881de38d88459678a02f2b5ebc0e275b81..20da80c43b65e818079a2e07e027206dd9b83baa 100644 (file)
@@ -315,6 +315,8 @@ wxPostScriptDC::wxPostScriptDC (const wxPrintData& printData)
     m_signY = -1;  // default y-axis bottom up -> top down
 
     m_printData = printData;
+
+    m_ok = TRUE;
 }
 
 wxPostScriptDC::~wxPostScriptDC ()
@@ -1335,7 +1337,7 @@ void wxPostScriptDC::EndDoc ()
     *m_pstream << "%!PS-Adobe-2.0\n";   /* PostScript magic strings */
     *m_pstream << "%%Title: " << m_title.mb_str() << "\n";
     *m_pstream << "%%Creator: " << wxTheApp->argv[0] << "\n";
-    *m_pstream << "%%CreationDate: " << wxNow() << "\n";
+    *m_pstream << "%%CreationDate: " << wxNow().mb_str() << "\n";
 
     wxChar userID[256];
     if ( wxGetEmailAddress(userID, sizeof(userID)) )