mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-15 16:14:11 +02:00
Merge branch 'gcc_warning_fixes' for ShuttleGui
Missed these two in disentangling the merge.
This commit is contained in:
commit
9d73effe09
@ -2332,8 +2332,8 @@ void ShuttleGui::SetSizeHints( int minX, int minY )
|
||||
|
||||
ShuttleGuiGetDefinition::ShuttleGuiGetDefinition(
|
||||
wxWindow * pParent,CommandMessageTarget & target )
|
||||
: CommandMessageTargetDecorator( target ),
|
||||
ShuttleGui( pParent, eIsGettingMetadata )
|
||||
: ShuttleGui( pParent, eIsGettingMetadata ),
|
||||
CommandMessageTargetDecorator( target )
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ class AUDACITY_DLL_API ShuttleGuiBase /* not final */
|
||||
{
|
||||
public:
|
||||
ShuttleGuiBase(wxWindow * pParent,teShuttleMode ShuttleMode);
|
||||
~ShuttleGuiBase(void);
|
||||
virtual ~ShuttleGuiBase();
|
||||
void Init();
|
||||
void ResetId();
|
||||
|
||||
@ -403,7 +403,7 @@ class ShuttleGuiGetDefinition : public ShuttleGui, public CommandMessageTargetDe
|
||||
{
|
||||
public:
|
||||
ShuttleGuiGetDefinition(wxWindow * pParent,CommandMessageTarget & target );
|
||||
~ShuttleGuiGetDefinition(void);
|
||||
virtual ~ShuttleGuiGetDefinition();
|
||||
|
||||
wxCheckBox * TieCheckBox(
|
||||
const wxString &Prompt,
|
||||
@ -457,9 +457,6 @@ public:
|
||||
const int Value,
|
||||
const int max,
|
||||
const int min) override;
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user