mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-04 21:50:51 +01:00
I got fed up of unused parameter warning from my compiler hiding the warnings I wanted to see, so have added WXUNUSED annotations to a lot of widely used header files, and cleaned up trailing junk on the way.
This commit is contained in:
@@ -48,7 +48,7 @@ class SelectionBar:public ToolBar {
|
||||
void Create(wxWindow *parent);
|
||||
|
||||
virtual void Populate();
|
||||
virtual void Repaint(wxDC *dc) {};
|
||||
virtual void Repaint(wxDC * WXUNUSED(dc)) {};
|
||||
virtual void EnableDisableButtons() {};
|
||||
virtual void UpdatePrefs();
|
||||
|
||||
@@ -107,14 +107,3 @@ class SelectionBar:public ToolBar {
|
||||
|
||||
#endif
|
||||
|
||||
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
|
||||
// version control system. Please do not modify past this point.
|
||||
//
|
||||
// Local Variables:
|
||||
// c-basic-offset: 3
|
||||
// indent-tabs-mode: nil
|
||||
// End:
|
||||
//
|
||||
// vim: et sts=3 sw=3
|
||||
// arch-tag: 441b2b59-b3aa-4d30-bed2-7377cef491ab
|
||||
|
||||
|
||||
Reference in New Issue
Block a user