1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-27 15:53:49 +01:00

Move DoHelpWelcome out of HelpMenus

This commit is contained in:
Paul Licameli
2019-06-12 23:51:23 -04:00
parent 2d11e6bda9
commit f8c40dc8e7
5 changed files with 12 additions and 12 deletions

View File

@@ -282,11 +282,6 @@ namespace HelpActions {
// exported helper functions
void DoHelpWelcome( AudacityProject &project )
{
SplashDialog::Show2( &GetProjectFrame( project ) );
}
// Menu handler functions
struct Handler : CommandHandlerObject {
@@ -396,7 +391,7 @@ void MayCheckForUpdates(AudacityProject &project)
void OnHelpWelcome(const CommandContext &context)
{
DoHelpWelcome( context.project );
SplashDialog::DoHelpWelcome( context.project );
}
#endif