Gui: Fix header uniformity, whitespace, and doxygen fixes

This commit is contained in:
luz paz
2020-11-25 22:03:45 -05:00
committed by wwmayer
parent c6faecdcee
commit 298c677873
283 changed files with 2026 additions and 1903 deletions

View File

@@ -52,7 +52,7 @@ ToolBox::~ToolBox()
}
/**
* Adds the widget w in a new tab at bottom of the toolbox. The new tab's label is set to \a label.
* Adds the widget w in a new tab at bottom of the toolbox. The new tab's label is set to \a label.
* Returns the new tab's index.
*/
int ToolBox::addItem ( QWidget * w, const QString & label )
@@ -61,7 +61,7 @@ int ToolBox::addItem ( QWidget * w, const QString & label )
}
/**
* Adds the widget \a item in a new tab at bottom of the toolbox. The new tab's label is set to \a label, and
* Adds the widget \a item in a new tab at bottom of the toolbox. The new tab's label is set to \a label, and
* the \a iconSet is displayed to the left of the \a label. Returns the new tab's index.
*/
int ToolBox::addItem ( QWidget * item, const QIcon & iconSet, const QString & label )
@@ -70,9 +70,9 @@ int ToolBox::addItem ( QWidget * item, const QIcon & iconSet, const QString & la
}
/**
* This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
* This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
*
* Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is out of range.
* Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is out of range.
* The new item's label is set to \a label. Returns the new item's index.
*/
int ToolBox::insertItem ( int index, QWidget * item, const QString & label )
@@ -81,8 +81,8 @@ int ToolBox::insertItem ( int index, QWidget * item, const QString & label )
}
/**
* Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is out of range.
* The new item's label is set to \a label, and the \a iconSet is displayed to the left of the \a label.
* Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is out of range.
* The new item's label is set to \a label, and the \a iconSet is displayed to the left of the \a label.
* Returns the new item's index.
*/
int ToolBox::insertItem ( int index, QWidget * item, const QIcon & iconSet, const QString & label )