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

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
wxCode-users mailing list
wxCode-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxcode-users

Reply via email to