1
0
mirror of https://github.com/altlinux/admc.git synced 2025-01-20 10:04:05 +03:00

Add group rename sam account name autofill

Bugfix#47082
This commit is contained in:
Semyon Knyazev 2023-11-14 23:51:30 +04:00
parent b1de04f01a
commit 8d371a24ad

View File

@ -25,6 +25,7 @@
#include "attribute_edits/sam_name_edit.h"
#include "rename_object_helper.h"
#include "settings.h"
#include "utils.h"
RenameGroupDialog::RenameGroupDialog(AdInterface &ad, const QString &target_arg, QWidget *parent)
: RenameObjectDialog(parent) {
@ -43,6 +44,7 @@ RenameGroupDialog::RenameGroupDialog(AdInterface &ad, const QString &target_arg,
};
helper = new RenameObjectHelper(ad, target_arg, ui->name_edit, edit_list, this, requred_list, ui->button_box);
setup_lineedit_autofill(ui->name_edit, ui->sam_name_edit);
settings_setup_dialog_geometry(SETTING_rename_group_dialog_geometry, this);
}