From ffa5a512112809e2256cae7a01afcd14c99c83a6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 15 Nov 2015 01:17:12 +0000 Subject: Rename certificate -> recipient in Screen. --- src/lib/screen.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib/screen.h') diff --git a/src/lib/screen.h b/src/lib/screen.h index 6bac3ec14..6e3b8b01d 100644 --- a/src/lib/screen.h +++ b/src/lib/screen.h @@ -28,14 +28,14 @@ class Cinema; * @brief A representation of a Screen for KDM generation. * * This is the name of the screen and the certificate of its - * server. + * `recipient' (i.e. the servers). */ class Screen { public: - Screen (std::string const & n, boost::optional cert) + Screen (std::string const & n, boost::optional rec) : name (n) - , certificate (cert) + , recipient (rec) {} Screen (cxml::ConstNodePtr); @@ -44,5 +44,5 @@ public: boost::shared_ptr cinema; std::string name; - boost::optional certificate; + boost::optional recipient; }; -- cgit v1.2.3