1
0
mirror of https://github.com/altlinux/admc.git synced 2025-03-24 06:50:13 +03:00

comment edits_apply()

This commit is contained in:
Dmitry Degtyarev 2021-02-03 13:30:48 +04:00
parent aaa0409908
commit 32c06e2db2

View File

@ -96,7 +96,7 @@ void edits_add_to_layout(QList<AttributeEdit *> edits, QFormLayout *layout);
// message is shown at a time.
bool edits_verify(QList<AttributeEdit *> edits, const QString &dn);
// Applies all edits that were modified
// Applies all edits that were modified. If one of the edits fails to apply midway, the apply process still continues. This is so that if more errors occur, they are all gathered together and presented to the user together. If process stopped on first error, the user would have to apply multiple times while fixing errors to see all of them.
bool edits_apply(QList<AttributeEdit *> edits, const QString &dn);
void edits_load(QList<AttributeEdit *> edits, const AdObject &object);