1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-31 00:16:32 -05:00

Merge pull request #4941 from lioncash/config

configure_input_player: Use static qualifier for IsProfileNameValid()
This commit is contained in:
Morph
2020-11-20 14:16:01 +08:00
committed by GitHub

View File

@@ -1137,7 +1137,7 @@ void ConfigureInputPlayer::CreateProfile() {
return;
}
if (!profiles->IsProfileNameValid(profile_name.toStdString())) {
if (!InputProfiles::IsProfileNameValid(profile_name.toStdString())) {
QMessageBox::critical(this, tr("Create Input Profile"),
tr("The given profile name is not valid!"));
return;