2021-01-20 Fred Gleason <fredg@paravelsystems.com>

* Added a 'RDLogIcons::userType()' method.
	* Added a 'RDUser::Type' enumeration.
	* Added a 'RDUser::type()' method.
	* Added a 'RDUserListModel' class.
	* Refactored the 'List Users' dialog in rdadmin(1) to use the
	model-based API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-01-20 15:46:42 -05:00
parent 18c9c1bdfc
commit 962abfa7fc
27 changed files with 1053 additions and 406 deletions

View File

@@ -148,16 +148,16 @@ void AddUser::okData()
q=new RDSqlQuery(sql);
delete q;
delete user;
done(-1);
done(false);
return;
}
delete user;
*user_name=user_name_edit->text();
done(0);
done(true);
}
void AddUser::cancelData()
{
done(-1);
done(false);
}