hopefully fix font-size cache and printing

svn: r8352
This commit is contained in:
Matthew Flatt 2008-01-16 22:25:14 +00:00
parent 8f193f9e67
commit 5715f7a8da
2 changed files with 7 additions and 0 deletions

View File

@ -212,6 +212,8 @@ class wxPrinterDC: public wxDC
wxPrinterDC(HDC theDC);
~wxPrinterDC(void);
virtual int CacheFontMetricsKey();
};
// Gets an HDC for the default printer configuration

View File

@ -3052,6 +3052,11 @@ wxPrinterDC::wxPrinterDC(HDC theDC)
SetPen(wxBLACK_PEN);
}
int wxPrinterDC::CacheFontMetricsKey()
{
return 0;
}
wxPrinterDC::~wxPrinterDC(void)
{
}