Settings Dialog: Don't need ShowSettingsDialog()

This commit is contained in:
tt2468 2021-02-01 05:35:58 -08:00
parent e6c2c90677
commit 20fa14563c
2 changed files with 1 additions and 8 deletions

View File

@ -117,15 +117,9 @@ WSEventsPtr GetEventsSystem() {
return _eventsSystem;
}
void ShowSettingsDialog() {
if (settingsDialog) {
settingsDialog->setVisible(true);
}
}
void ShowPasswordSetting() {
if (settingsDialog) {
settingsDialog->PreparePasswordEntry();
settingsDialog->setVisible(true);
}
}
}

View File

@ -55,7 +55,6 @@ typedef std::shared_ptr<WSEvents> WSEventsPtr;
ConfigPtr GetConfig();
WSServerPtr GetServer();
WSEventsPtr GetEventsSystem();
void ShowSettingsDialog();
void ShowPasswordSetting();
#define OBS_WEBSOCKET_VERSION "4.8.0"