Warning fixes to unused variables, int/wxChar keycode and other typecasting, not mixing 'type*' and 'type' variables in single line, IsEmpty to empty replacement etc.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -177,7 +177,8 @@ wxRect wxRenderer::StandardGetScrollbarRect(const wxScrollBar *scrollbar,
|
||||
}
|
||||
|
||||
wxSize sizeTotal = scrollbar->GetClientSize();
|
||||
wxCoord *start, *width, length, arrow;
|
||||
wxCoord *start, *width;
|
||||
wxCoord length, arrow;
|
||||
wxRect rect;
|
||||
if ( scrollbar->IsVertical() )
|
||||
{
|
||||
@@ -813,7 +814,8 @@ void wxControlRenderer::DrawProgressBar(const wxGauge *gauge)
|
||||
int steps = ((lenTotal + step - 1) * pos) / (max * step);
|
||||
|
||||
// calc the coords of one small rect
|
||||
wxCoord *px, dx, dy;
|
||||
wxCoord *px;
|
||||
wxCoord dx, dy;
|
||||
if ( gauge->IsVertical() )
|
||||
{
|
||||
// draw from bottom to top: so first set y to the bottom
|
||||
|
||||
Reference in New Issue
Block a user