1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

Adds lib-network-manager

This commit is contained in:
Dmitry Vedenko
2021-05-25 16:07:23 +03:00
parent 52a835bd61
commit 77cc7bed6f
22 changed files with 2249 additions and 0 deletions

View File

@@ -112,6 +112,8 @@ It handles initialization and termination by subclassing wxApp.
#include "widgets/FileConfig.h"
#include "widgets/FileHistory.h"
#include "NetworkManager.h"
#ifdef EXPERIMENTAL_EASY_CHANGE_KEY_BINDINGS
#include "prefs/KeyConfigPrefs.h"
#endif
@@ -2200,6 +2202,8 @@ int AudacityApp::OnExit()
// Terminate the PluginManager (must be done before deleting the locale)
PluginManager::Get().Terminate();
audacity::network_manager::NetworkManager::GetInstance().Terminate();
return 0;
}