--- a/v/includex/v/vpsdc.h +++ b/v/includex/v/vpsdc.h @@ -14,7 +14,9 @@ #include #include -#include +#include + +using namespace std; class vPostScriptDC : public vDC { --- a/v/includex/v/vpsprntr.h +++ b/v/includex/v/vpsprntr.h @@ -14,7 +14,7 @@ #include #include -#include +#include #define vPaperLetter 0 #define vPaperLegal 1 @@ -31,6 +31,8 @@ #define vPaperQuarto 12 #define vPaper10x14 13 +using namespace std; + #define vPaperDefault vPaperLetter // Index to default paper class vPSPrinter : public vModalDialog --- a/v/srcx/vpsprntr.cxx +++ b/v/srcx/vpsprntr.cxx @@ -103,7 +103,7 @@ static unsigned char prompt_bits[] = { _height = PaperHeights[_paperType]; _portrait = 1; _useColor = 0; - _pstream = 0; + vPSPrinter::_pstream = 0; ++_instances; // bump reference counter }