Make RecordingPrefs.cpp independent of Warning

This commit is contained in:
Paul Licameli 2019-07-13 16:33:58 -04:00
parent f420122001
commit c98ab0aec9
5 changed files with 10 additions and 12 deletions

View File

@ -326,3 +326,8 @@ bool EnumSetting::WriteInt( int code ) // you flush gPrefs afterward
return false;
return Write( mSymbols[index].Internal() );
}
wxString WarningDialogKey(const wxString &internalDialogName)
{
return wxT("/Warnings/") + internalDialogName;
}

View File

@ -191,4 +191,9 @@ private:
std::unique_ptr<Impl> mpImpl;
};
/// Return the config file key associated with a warning dialog identified
/// by internalDialogName. When the box is checked, the value at the key
/// becomes false.
wxString WarningDialogKey(const wxString &internalDialogName);
#endif

View File

@ -31,8 +31,6 @@
#include "../Prefs.h"
#include "../ShuttleGui.h"
#include "../widgets/Warning.h"
using std::min;
enum {

View File

@ -109,8 +109,3 @@ int ShowWarningDialog(wxWindow *parent,
gPrefs->Flush();
return wxID_OK;
}
wxString WarningDialogKey(const wxString &internalDialogName)
{
return wxT("/Warnings/") + internalDialogName;
}

View File

@ -30,9 +30,4 @@ int ShowWarningDialog(wxWindow *parent,
// This message appears by the checkbox:
const wxString &footer = DefaultWarningFooter());
/// Return the config file key associated with a warning dialog identified
/// by internalDialogName. When the box is checked, the value at the key
/// becomes false.
wxString WarningDialogKey(const wxString &internalDialogName);
#endif // __AUDACITY_WARNING__