Skip to content

Commit 073bec2

Browse files
deiningdantti
authored andcommitted
Fix typos
1 parent 1f2ca71 commit 073bec2

29 files changed

+62
-62
lines changed

DateTime/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMakeLists.txt for Console Application
22

3-
# TODO: Set minumum cmake version
3+
# TODO: Set minimum cmake version
44
cmake_minimum_required(VERSION 3.14)
55

66
# TODO: Set project name

HelloAndroid/XlsxTableModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ QVariant XlsxTableModel::data(const QModelIndex &index, int role) const
9191
int col = index.column();
9292
int row = index.row();
9393

94-
// check boudaries
94+
// check boundaries
9595
if (col < 0 || columnCount() <= col || row < 0 || rowCount() <= row) {
9696
qDebug() << "[Warning]"
9797
<< " col=" << col << ", row=" << row;

HelloAndroid/XlsxTableModel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class XlsxTableModel : public QAbstractTableModel
3232
public:
3333
QStringList customRoleNames();
3434

35-
public: // constrcutor
35+
public: // constructor
3636
XlsxTableModel(const QList<QString> &colTitle, QList<VLIST> data, QObject *parent = NULL);
3737

3838
public: // virtual function of parent object

HelloWorld/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMakeLists.txt for Console Application
22

3-
# TODO: Set minumum cmake version
3+
# TODO: Set minimum cmake version
44
cmake_minimum_required(VERSION 3.14)
55

66
# TODO: Set project name

HowToSetProject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ include(./QXlsx.pri)
8989

9090
<br /><br />
9191

92-
:one::one: Set heaer files and namespace for sample. Then append hello world code.
92+
:one::one: Set header files and namespace for sample. Then append hello world code.
9393

9494
![](markdown.data/11.jpg)
9595

Pump/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMakeLists.txt for Console Application
22

3-
# TODO: Set minumum cmake version
3+
# TODO: Set minimum cmake version
44
cmake_minimum_required(VERSION 3.14)
55

66
# TODO: Set project name

QXlsx/header/xlsxchart_p.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class ChartPrivate : public AbstractOOXmlFilePrivate
140140
bool majorGridlinesEnabled;
141141
bool minorGridlinesEnabled;
142142

143-
QString layout; // only for storing a readed file
143+
QString layout; // only for storing a read file
144144
};
145145

146146
QT_END_NAMESPACE_XLSX

QXlsx/header/xlsxcontenttypes_p.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ContentTypes : public AbstractOOXmlFile
2121
void addDefault(const QString &key, const QString &value);
2222
void addOverride(const QString &key, const QString &value);
2323

24-
// Convenient funcation for addOverride()
24+
// Convenient function for addOverride()
2525
void addDocPropCore();
2626
void addDocPropApp();
2727
void addStyles();

QXlsx/header/xlsxdrawinganchor_p.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class DrawingAnchor
104104

105105
// BELOW only for cxnSp shape
106106
QString cxnSp_filpV, cxnSp_macro;
107-
// belwo for cxnsp and sp
107+
// below for cxnsp and sp
108108
QString xsp_cNvPR_name, xsp_cNvPR_id; // x measns shape and cxnSp together using
109109
QString xbwMode; // same as above
110110
QString xIn_algn, xIn_cmpd, xIn_cap, xIn_w; // cxnSp only need xIn_w

QXlsx/source/xlsxabstractsheet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ AbstractSheetPrivate::~AbstractSheetPrivate()
4040
4141
\value SS_Visible
4242
\value SS_Hidden
43-
\value SS_VeryHidden User cann't make a veryHidden sheet visible in normal way.
43+
\value SS_VeryHidden User can't make a veryHidden sheet visible in normal way.
4444
*/
4545

4646
/*!
@@ -140,7 +140,7 @@ bool AbstractSheet::isVisible() const
140140
}
141141

142142
/*!
143-
* Make the sheet hiden or visible based on \a hidden.
143+
* Make the sheet hidden or visible based on \a hidden.
144144
*/
145145
void AbstractSheet::setHidden(bool hidden)
146146
{

0 commit comments

Comments
 (0)