From: SourceForge.net <no...@so...> - 2006-10-18 19:03:43
|
Bugs item #1579935, was opened at 2006-10-18 14:03 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=1579935&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxpdfdoc Group: None Status: Open Resolution: None Priority: 5 Submitted By: Blake (blizzymadden) Assigned to: Nobody/Anonymous (nobody) Summary: Compile warnings Initial Comment: In pdfkernal.cpp, there is a section that VC++ 2003 complains about operator precedence. It may not really be a problem, but just to be on the safe side I wish to mention this. Basically, it is getting confused by lines like this: if (m_viewerPrefs & wxPDF_VIEWER_HIDEWINDOWUI != 0) It expects it to look like this: if ((m_viewerPrefs & wxPDF_VIEWER_HIDEWINDOWUI) != 0) Or suppose this would be simpler: if (m_viewerPrefs & wxPDF_VIEWER_HIDEWINDOWUI) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=1579935&group_id=51305 |