1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

fixed an initalization order warning in ShuttleGui.cpp

This commit is contained in:
andheh 2018-02-28 11:51:52 +01:00 committed by James Crook
parent d5dd9ff7c6
commit 726f33e802

View File

@ -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 )
{
}