Removing paren warning

This commit is contained in:
Jay McCarthy 2010-05-19 10:47:39 -05:00
parent c29419826c
commit 15a1dd6b20

View File

@ -2335,8 +2335,8 @@ void wxPrintSetupData::SetPrinterMode(int mode)
{
printer_mode = PS_FILE;
if (mode == PS_PREVIEW && preview_command
|| mode == PS_PRINTER && printer_command)
if ((mode == PS_PREVIEW && preview_command)
|| (mode == PS_PRINTER && printer_command))
printer_mode = mode;
}