Bug 531606 - "Gecko 1.9.x (Firefox 3.x / Seamonkey 2) truncates print job name to only 30 characters" [r=roc a=dolske]

This commit is contained in:
Masatoshi Kimura 2010-11-13 03:02:00 -08:00
parent 00161b854e
commit 4a11f15b87

View File

@ -202,7 +202,7 @@ gfxWindowsSurface::BeginPrinting(const nsAString& aTitle,
const nsAString& aPrintToFileName)
{
#ifdef NS_PRINTING
#define DOC_TITLE_LENGTH 30
#define DOC_TITLE_LENGTH (MAX_PATH-1)
DOCINFOW docinfo;
nsString titleStr(aTitle);