chore: update file

This commit is contained in:
Eshan Roy (Eshanized)
2024-04-30 22:45:44 +05:30
parent de1df99aa4
commit ffb4f3eb6f

View File

@@ -342,7 +342,7 @@ void SnigdhaOSAssistant::relaunchSelf(){
updateState(param);
}
void SnigdhaOSAssistant::on_selectWidget_buttonBox_clicked(){
void SnigdhaOSAssistant::on_textWidget_buttonBox_clicked(){
switch (currentState) {
case State::WELCOME:
if (ui->textWidget_buttonBox->standardButton(button) == QDialogButtonBox::Ok) {
@@ -385,3 +385,9 @@ void SnigdhaOSAssistant::on_selectWidget_buttonBox_clicked(){
}
}
void SnigdhaOSAssistant::on_selectWidget_buttonBox_clicked(QAbstractButton* button){
if (ui->selectWidget_buttonBox->standardButton(button) == QDialogButtonBox::Ok) {
updateState(State::APPLY);
} else
updateState(State::QUIT);
}