Oops, making wrapcolumn unsigned was a mistake. (Thanks to slamm's
warnings page for showing me that!) Change it back to signed. git-svn-id: svn://10.0.0.236/trunk@37746 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1623,7 +1623,7 @@ nsEditorShell::GetWrapColumn(PRInt32* aWrapColumn)
|
||||
nsCOMPtr<nsITextEditor> textEditor = do_QueryInterface(mEditor);
|
||||
if (textEditor)
|
||||
{
|
||||
PRUint32 wc;
|
||||
PRInt32 wc;
|
||||
err = textEditor->GetBodyWrapWidth(&wc);
|
||||
if (NS_SUCCEEDED(err))
|
||||
*aWrapColumn = (PRInt32)wc;
|
||||
|
||||
Reference in New Issue
Block a user