Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30465/src/gui

Modified Files:
        wxMDialogs.cpp 
Log Message:
fixes signed/unsigned warnings when compiling with wx cvs HEAD

Index: wxMDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMDialogs.cpp,v
retrieving revision 1.423
retrieving revision 1.424
diff -b -u -2 -r1.423 -r1.424
--- wxMDialogs.cpp      16 Jan 2006 20:32:27 -0000      1.423
+++ wxMDialogs.cpp      9 Apr 2006 20:25:10 -0000       1.424
@@ -2871,5 +2871,5 @@
    // only enable buttons if there is something selected and also if pressing
    // them would do something
-   m_btnDown->Enable(sel != -1 && sel < m_checklstBox->GetCount() - 1);
+   m_btnDown->Enable(sel != -1 && (size_t)sel < m_checklstBox->GetCount() - 1);
    m_btnUp->Enable(sel != -1 && sel > 0);
 }



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to