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

* Added 'RDFeedListModel' class
	* Refactored the top-level window in rdcastmanager(1) to use the
	model-based API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-01-25 09:28:43 -05:00
parent be3fcfd4ef
commit 9d5d446c2a
24 changed files with 945 additions and 278 deletions

View File

@@ -384,13 +384,13 @@ void EditCast::okData()
return;
}
done(0);
done(true);
}
void EditCast::cancelData()
{
done(-1);
done(false);
}