1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

Define struct DialogDefinition::Item, to be filled in

This commit is contained in:
Paul Licameli
2017-10-30 21:42:01 -04:00
parent 4a2cfd92d7
commit 8ea137e041
2 changed files with 21 additions and 3 deletions

View File

@@ -119,6 +119,14 @@ private:
T mDefaultValue;
};
namespace DialogDefinition {
struct Item {
Item() = default;
};
}
class AUDACITY_DLL_API ShuttleGuiBase /* not final */
{
public:
@@ -344,7 +352,7 @@ protected:
void PushSizer();
void PopSizer();
void UpdateSizersCore( bool bPrepend, int Flags );
void UpdateSizersCore( bool bPrepend, int Flags, bool prompt = false );
void UpdateSizers();
void UpdateSizersC();
void UpdateSizersAtStart();
@@ -412,6 +420,9 @@ private:
wxString mRadioValueString; /// Unwrapped string value.
wxRadioButton * DoAddRadioButton(
const wxString &Prompt, int style, int selector, int initValue);
protected:
DialogDefinition::Item mItem;
};
// A rarely used helper function that sets a pointer