aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYordan Karadzhov (VMware) <y.karadz@gmail.com>2022-03-16 15:41:29 +0200
committerYordan Karadzhov (VMware) <y.karadz@gmail.com>2022-03-16 15:43:13 +0200
commitab5cae65062e7ac24c4e9c7263c75c8331d86411 (patch)
tree655a832d4c57af7c384358cd80c449f9d1b50572
parente35970770b71f0cc849870512a806dff96bf19e1 (diff)
downloadkernel-shark-ab5cae65062e7ac24c4e9c7263c75c8331d86411.tar.gz
kernel-shark: Fix comment typos
No functional changes introduced. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
-rw-r--r--src/KsWidgetsLib.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/KsWidgetsLib.hpp b/src/KsWidgetsLib.hpp
index 428e8ddf..6ec2bd17 100644
--- a/src/KsWidgetsLib.hpp
+++ b/src/KsWidgetsLib.hpp
@@ -230,7 +230,7 @@ public:
/** Get the name of the widget. */
QString name() const {return _name;}
- /** Get the state of the "all" checkboxe. */
+ /** Get the state of the "all" checkbox. */
bool all() const
{
if(_allCb.checkState() == Qt::Checked)
@@ -238,7 +238,7 @@ public:
return false;
}
- /** The "all" checkboxe to be visible or not. */
+ /** The "all" checkbox to be visible or not. */
void setVisibleCbAll(bool v) {_allCbAction->setVisible(v);}
void setDefault(bool);
@@ -282,10 +282,10 @@ protected:
/** Identifier of the Data stream for which the selection applies. */
int _sd;
- /** The "all" checkboxe. */
+ /** The "all" checkbox. */
QCheckBox _allCb;
- /** A vector of Id numbers coupled to each checkboxe. */
+ /** A vector of Id numbers coupled to each checkbox. */
QVector<int> _id;
/** A nested widget used to position the checkboxes. */
@@ -342,13 +342,13 @@ public:
/**
* The "apply" signal will emit a vector containing the Ids of all
- * checked checkboxe.
+ * checked checkbox.
*/
void applyIds(bool v = true) {_applyIds = v;}
/**
* The "apply" signal will emit a vector containing the statuse of all
- * checkboxe.
+ * checkbox.
*/
void applyStatus(bool v = true) {_applyIds = !v;}
@@ -432,7 +432,7 @@ public:
KsCheckBoxTableWidget(int sd, const QString &name = "",
QWidget *parent = nullptr);
- /** Only one checkboxe at the time can be checked. */
+ /** Only one checkbox at the time can be checked. */
void setSingleSelection()
{
_table.setSelectionMode(QAbstractItemView::SingleSelection);
@@ -500,7 +500,7 @@ public:
KsCheckBoxTreeWidget(int sd, const QString &name = "",
QWidget *parent = nullptr);
- /** Only one checkboxe at the time can be checked. */
+ /** Only one checkbox at the time can be checked. */
void setSingleSelection()
{
_tree.setSelectionMode(QAbstractItemView::SingleSelection);