Skip to content

Commit

Permalink
Suppress warnings about unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wi committed Dec 29, 2022
1 parent 8e6c80f commit e5b4656
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/generic/treectlg.cpp
Expand Up @@ -2685,6 +2685,8 @@ void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
int w2 = f2.GetNumericWeight();
wxSize ps2 = f2.GetPixelSize();
wxLogDebug("2 wxFont weight=%i size=%ix%i", w2, ps2.x, ps2.y);
w2 = 0;
ps2 = wxSize();
}

dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
Expand Down

0 comments on commit e5b4656

Please sign in to comment.