mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 16:15:48 +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:
@@ -36,7 +36,7 @@ class MixerToolBar:public ToolBar {
|
||||
void SetMixer(wxCommandEvent &event);
|
||||
|
||||
virtual void Populate();
|
||||
virtual void Repaint(wxDC *dc) {};
|
||||
virtual void Repaint(wxDC * WXUNUSED(dc)) {};
|
||||
virtual void EnableDisableButtons() {};
|
||||
|
||||
void OnFocus(wxFocusEvent &event);
|
||||
@@ -69,14 +69,3 @@ class MixerToolBar: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: 3acba542-52ae-44eb-b0b3-e0645587b5c0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user