diff --git a/src/addon/client.hpp b/src/addon/client.hpp index ecc2502b56ce..3512feb2ad32 100644 --- a/src/addon/client.hpp +++ b/src/addon/client.hpp @@ -39,7 +39,7 @@ class addons_client : private boost::noncopyable /** * Constructor. * - * @param disp Display object on which to display a status dialog. + * @param v Target for UI rendering for the progress dialog. * @param address Add-ons server host address (i.e. localhost:15999). */ addons_client(CVideo& v, const std::string& address); diff --git a/src/addon/manager_ui.cpp b/src/addon/manager_ui.cpp index 96a66dd13a04..dc549c7f3dd9 100644 --- a/src/addon/manager_ui.cpp +++ b/src/addon/manager_ui.cpp @@ -1226,7 +1226,7 @@ bool manage_addons(CVideo& v) } } -bool ad_hoc_addon_fetch_session(CVideo & v, const std::vector & addon_ids) +bool ad_hoc_addon_fetch_session(CVideo& v, const std::vector& addon_ids) { std::string remote_address = preferences::campaign_server(); diff --git a/src/addon/manager_ui.hpp b/src/addon/manager_ui.hpp index 42c7bf5aaa81..bfd36cfc5499 100644 --- a/src/addon/manager_ui.hpp +++ b/src/addon/manager_ui.hpp @@ -25,7 +25,7 @@ class CVideo; /** * Shows the add-ons server connection dialog, for access to the various management front-ends. * - * @param disp Display object on which to render UI elements. + * @param v Target for UI rendering. * * @return @a true when one or more add-ons have been successfully installed or * removed, thus requiring a local WML cache refresh. @a false otherwise. @@ -36,11 +36,11 @@ bool manage_addons(CVideo& v); * Conducts an ad-hoc add-ons server connection to download an add-on with a particular id and all * it's dependencies. Launches gui dialogs when issues arise. * - * @param disp Display object on which to render UI elements. + * @param v Target for UI rendering. * @param addon_ids The ids of the target add-on. * * @return @a true when we successfully installed the target (possibly the user chose to ignore failures) */ -bool ad_hoc_addon_fetch_session(CVideo & v, const std::vector & addon_ids); +bool ad_hoc_addon_fetch_session(CVideo& v, const std::vector& addon_ids); #endif diff --git a/src/wml_exception.hpp b/src/wml_exception.hpp index bed8232c7351..cf2510b23a9d 100644 --- a/src/wml_exception.hpp +++ b/src/wml_exception.hpp @@ -130,9 +130,10 @@ struct twml_exception /** * Shows the error in a dialog. - * @param disp The display object to show the message on. + * + * @param video Target for rendering the UI message. */ - void show(CVideo &video); + void show(CVideo& video); private: IMPLEMENT_LUA_JAILBREAK_EXCEPTION(twml_exception) };