comments: fix copy paste errors

Origin commit data
------------------
Commit: 6e310a8157
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-08-28 (Mon, 28 Aug 2017)
This commit is contained in:
2017-08-28 12:16:45 +02:00
parent b490817d1b
commit ab4bcc584a
9 changed files with 132 additions and 132 deletions

View File

@@ -52,19 +52,19 @@ public:
* NOTE: addLine() members are used only for compatibilty with older implementation
* of lines.
* @param[in] Title
* @li exepts type std::string, defines caption of window
* @li expects type std::string, defines caption of window
* @param[in] Default_Text
* @li optional: exepts type std::string, defines a pre defined help text
* @li optional: expects type std::string, defines a pre defined help text
* @param[in] text_mode
* @li optional: exepts type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @li optional: expects type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @param[in] line_height
* @li optional: exepts type int, defines height of line
* @li optional: expects type int, defines height of line
* @param[in] line_indent
* @li optional: exepts type int, defines lenght of indent from left
* @li optional: expects type int, defines lenght of indent from left
* @param[in] font_text
* @li optional: exepts type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @li optional: expects type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @param[in] Icon
* @li exepts type const char*, defins the title bar icon and can be name (see /gui/icons.h) or path to an image file
* @li expects type const char*, defins the title bar icon and can be name (see /gui/icons.h) or path to an image file
*/
Helpbox( const std::string& Title,
const std::string& Default_Text = std::string(),
@@ -79,15 +79,15 @@ public:
/**Adds an item with pre defined text
* @param[in] text
* @li exepts type std::string
* @li expects type std::string
* @param[in] text_mode
* @li optional: exepts type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @li optional: expects type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @param[in] line_height
* @li optional: exepts type int, defines height of line
* @li optional: expects type int, defines height of line
* @param[in] line_indent
* @li optional: exepts type int, defines lenght of indent from left
* @li optional: expects type int, defines lenght of indent from left
* @param[in] font_text
* @li optional: exepts type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @li optional: expects type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
*/
void addLine( const std::string& text,
const int& text_mode = HELPBOX_DEFAULT_TEXT_MODE,
@@ -97,15 +97,15 @@ public:
/**Adds an item with pre defined text
* @param[in] text
* @li exepts type const char *
* @li expects type const char *
* @param[in] text_mode
* @li optional: exepts type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @li optional: expects type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @param[in] line_height
* @li optional: exepts type int, defines height of line
* @li optional: expects type int, defines height of line
* @param[in] line_indent
* @li optional: exepts type int, defines lenght of indent from left
* @li optional: expects type int, defines lenght of indent from left
* @param[in] font_text
* @li optional: exepts type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @li optional: expects type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
*/
void addLine( const char *text,
const int& text_mode = HELPBOX_DEFAULT_TEXT_MODE,
@@ -115,17 +115,17 @@ public:
/**Adds an item with pre defined icon and text
* @param[in] icon
* @li exepts type std::string, icon can be name (see /gui/icons.h) or path to an image file
* @li expects type std::string, icon can be name (see /gui/icons.h) or path to an image file
* @param[in] text
* @li exepts type std::string
* @li expects type std::string
* @param[in] text_mode
* @li optional: exepts type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @li optional: expects type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @param[in] line_height
* @li optional: exepts type int, defines height of line
* @li optional: expects type int, defines height of line
* @param[in] line_indent
* @li optional: exepts type int, defines lenght of indent from left
* @li optional: expects type int, defines lenght of indent from left
* @param[in] font_text
* @li optional: exepts type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @li optional: expects type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
*/
void addLine( const std::string& icon,
const std::string& text,
@@ -136,17 +136,17 @@ public:
/**Adds an item with pre defined icon and text
* @param[in] icon
* @li exepts type const char *, icon can be name (see /gui/icons.h) or path to an image file
* @li expects type const char *, icon can be name (see /gui/icons.h) or path to an image file
* @param[in] text
* @li exepts type const char *
* @li expects type const char *
* @param[in] text_mode
* @li optional: exepts type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @li optional: expects type int, defines text modes, see /gui/widget/textbox.h for possible modes
* @param[in] line_height
* @li optional: exepts type int, defines height of line
* @li optional: expects type int, defines height of line
* @param[in] line_indent
* @li optional: exepts type int, defines lenght of indent from left
* @li optional: expects type int, defines lenght of indent from left
* @param[in] font_text
* @li optional: exepts type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
* @li optional: expects type Font*, default = NULL, this means SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO is used
*/
void addLine( const char *icon,
const char *text,