Remove OBSBasicSettings::VideoChangedRestart

The function `OBSBasicSettings::VideoChangedRestart` was never called,
hence remove it.
This commit is contained in:
Norihiro Kamae 2023-01-22 17:19:03 +09:00 committed by Jim
parent c2f157470b
commit cf2a9461a8
2 changed files with 0 additions and 11 deletions

View file

@ -4444,16 +4444,6 @@ void RestrictResetBitrates(initializer_list<QComboBox *> boxes, int maxbitrate)
}
}
void OBSBasicSettings::VideoChangedRestart()
{
if (!loading) {
videoChanged = true;
ui->videoMsg->setText(QTStr("Basic.Settings.ProgramRestart"));
sender()->setProperty("changed", QVariant(true));
EnableApplyButton(true);
}
}
void OBSBasicSettings::AdvancedChangedRestart()
{
if (!loading) {

View file

@ -425,7 +425,6 @@ private slots:
void Stream1Changed();
void VideoChanged();
void VideoChangedResolution();
void VideoChangedRestart();
void HotkeysChanged();
bool ScanDuplicateHotkeys(QFormLayout *layout);
void ReloadHotkeys(obs_hotkey_id ignoreKey = OBS_INVALID_HOTKEY_ID);