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

* Added 'RDReplicatorListModel'.
	* Refactored the 'Rivendell Replicators' 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-27 10:46:18 -05:00
parent d8f526119e
commit 040711e1d8
23 changed files with 588 additions and 195 deletions

View File

@@ -2,7 +2,7 @@
//
// Edit a Rivendell Replicator
//
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -342,11 +342,11 @@ void EditReplicator::okData()
q=new RDSqlQuery(sql);
delete q;
done(0);
done(true);
}
void EditReplicator::cancelData()
{
done(-1);
done(false);
}