diff mbox series

kernel-shark: Fix comment typos

Message ID 20220316143450.272611-1-y.karadz@gmail.com (mailing list archive)
State Accepted
Commit ab5cae65062e7ac24c4e9c7263c75c8331d86411
Headers show
Series kernel-shark: Fix comment typos | expand

Commit Message

Yordan Karadzhov March 16, 2022, 2:34 p.m. UTC
No functional changes introduced.

Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
---
 src/KsWidgetsLib.hpp | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/src/KsWidgetsLib.hpp b/src/KsWidgetsLib.hpp
index 428e8dd..6ec2bd1 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);