From: Julian Smart Date: Sun, 1 Jun 2003 19:23:16 +0000 (+0000) Subject: Fix (I hope) for bug [ 673862 ] printing zero length string with postscript does... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/272995af2ce282794d0e9c6ec8026316f849b147 Fix (I hope) for bug [ 673862 ] printing zero length string with postscript does not work Now descent and externalLeading will be zeroed if the string is empty. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/dcpsg.cpp b/src/generic/dcpsg.cpp index 4fa2f1d944..94c2a4993f 100644 --- a/src/generic/dcpsg.cpp +++ b/src/generic/dcpsg.cpp @@ -1990,6 +1990,8 @@ void wxPostScriptDC::DoGetTextExtent(const wxString& string, { if (x) (*x) = 0; if (y) (*y) = 0; + if (descent) (*descent) = 0; + if (externalLeading) (*externalLeading) = 0; return; }