diff --git a/src/gui/core/window_builder.hpp b/src/gui/core/window_builder.hpp index 41adf449eda50..f04de4f51d6db 100644 --- a/src/gui/core/window_builder.hpp +++ b/src/gui/core/window_builder.hpp @@ -31,7 +31,6 @@ class window; /** * Builds a window. * - * @param video The frame buffer to draw upon. * @param type The type id string of the window, this window * must be registered at startup. */ diff --git a/src/gui/dialogs/modal_dialog.hpp b/src/gui/dialogs/modal_dialog.hpp index 4437fb639bef7..6f09891bc5e9d 100644 --- a/src/gui/dialogs/modal_dialog.hpp +++ b/src/gui/dialogs/modal_dialog.hpp @@ -160,8 +160,6 @@ class modal_dialog /** * Shows the window. * - * @param video The video which contains the surface to draw - * upon. * @param auto_close_time The time in ms after which the dialog will * automatically close, if 0 it doesn't close. * @note the timeout is a minimum time and @@ -391,8 +389,6 @@ class modal_dialog * Every dialog shows it's own kind of window, this function should return * the window to show. * - * @param video The video which contains the surface to draw - * upon. * @returns The window to show. */ window* build_window() const; diff --git a/src/gui/dialogs/transient_message.hpp b/src/gui/dialogs/transient_message.hpp index cfe87bda73e8b..950d51616e68f 100644 --- a/src/gui/dialogs/transient_message.hpp +++ b/src/gui/dialogs/transient_message.hpp @@ -73,8 +73,6 @@ void show_transient_message(const std::string& title, * This shows a dialog with a short message which can be dismissed with a * single click. * - * @param video The video which contains the surface to draw - * upon. * @param message The message to show in the dialog. * @param image An image to show in the dialog. * @param message_use_markup Use markup for the message? diff --git a/src/gui/dialogs/wml_message.hpp b/src/gui/dialogs/wml_message.hpp index cb037b4128592..cec18f3c0d0ca 100644 --- a/src/gui/dialogs/wml_message.hpp +++ b/src/gui/dialogs/wml_message.hpp @@ -237,7 +237,6 @@ struct wml_message_portrait /** * Helper function to show a portrait. * - * @param video The display variable. * @param title The title of the dialog. * @param message The message to show. * @param left Portrait to show on the left. diff --git a/src/wml_exception.hpp b/src/wml_exception.hpp index 93104c5a60fa6..ef9d5bb65b87c 100644 --- a/src/wml_exception.hpp +++ b/src/wml_exception.hpp @@ -115,8 +115,6 @@ struct wml_exception /** * Shows the error in a dialog. - * - * @param video Target for rendering the UI message. */ void show(); private: