aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt')
-rw-r--r--lang/qt/README6
-rw-r--r--lang/qt/doc/Doxyfile.in6
-rw-r--r--lang/qt/src/dn.h2
-rw-r--r--lang/qt/src/wkspublishjob.h4
-rw-r--r--lang/qt/tests/t-encrypt.cpp2
5 files changed, 10 insertions, 10 deletions
diff --git a/lang/qt/README b/lang/qt/README
index 4621d28c..450fb032 100644
--- a/lang/qt/README
+++ b/lang/qt/README
@@ -3,7 +3,7 @@ Qt API bindings/wrapper for GPGME
Based on KF5gpgmepp QGpgME and libkleo/backends/qgpgme
Please note that QGpgME has a different license (GPL only)
-then GPGME itself. See the License secion in this
+then GPGME itself. See the License section in this
document for more information.
Overview
@@ -47,14 +47,14 @@ for API stability reasons.
Some jobs like the verification or decryption jobs have
dedicated result classes. Each result class at least
has the member function error() that can be used
-to check if a job failed. Additionally errors are emited
+to check if a job failed. Additionally errors are emitted
in the result signal.
Jobs also provide progress signal whenever GnuPG emits
a progress status line.
Most jobs also provide a way synchronusly execute them.
-Please not that synchronus use does not cause the autodeletion
+Please not that synchronous use does not cause the autodeletion
to take place so you have to manually delete them.
Async usage:
diff --git a/lang/qt/doc/Doxyfile.in b/lang/qt/doc/Doxyfile.in
index c672c4c5..8ccd11c4 100644
--- a/lang/qt/doc/Doxyfile.in
+++ b/lang/qt/doc/Doxyfile.in
@@ -1092,7 +1092,7 @@ HTML_STYLESHEET =
# cascading style sheets that are included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the
-# standard style sheet and is therefor more robust against future updates.
+# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra stylesheet files is of importance (e.g. the last
# stylesheet in the list overrules the setting of the previous ones in the
@@ -1635,8 +1635,8 @@ EXTRA_PACKAGES =
# Note: Only use a user-defined header if you know what you are doing! The
# following commands have a special meaning inside the header: $title,
# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
-# $projectbrief, $projectlogo. Doxygen will replace $title with the empy string,
-# for the replacement values of the other commands the user is refered to
+# $projectbrief, $projectlogo. Doxygen will replace $title with the empty string,
+# for the replacement values of the other commands the user is referred to
# HTML_HEADER.
# This tag requires that the tag GENERATE_LATEX is set to YES.
diff --git a/lang/qt/src/dn.h b/lang/qt/src/dn.h
index ef6fea0c..2d655c55 100644
--- a/lang/qt/src/dn.h
+++ b/lang/qt/src/dn.h
@@ -83,7 +83,7 @@ public:
const_iterator begin() const;
const_iterator end() const;
- /** Set the order in which prettyDN will reorder the Attirbutes. */
+ /** Set the order in which prettyDN will reorder the Attributes. */
void setAttributeOrder(const QStringList &order) const;
/** Get the used attribute order. */
diff --git a/lang/qt/src/wkspublishjob.h b/lang/qt/src/wkspublishjob.h
index 8d17e523..ff3f21e0 100644
--- a/lang/qt/src/wkspublishjob.h
+++ b/lang/qt/src/wkspublishjob.h
@@ -53,7 +53,7 @@ namespace QGpgME {
* send the RFC822 mail returned in returnedData.
*
* When the response is received start a startRecieve with the
- * RFC822 mail received as paramater response. Check for errors
+ * RFC822 mail received as parameter response. Check for errors
* and then send again send the result from returnedData back to
* the server.
*
@@ -87,7 +87,7 @@ public:
*/
virtual void startCreate(const char *fpr, const QString &mailbox) = 0;
- /** Handle a submisson response. The returnedData in the result singnal
+ /** Handle a submission response. The returnedData in the result singnal
* will contain the confirmation response as returned by gpg-wks-client --receive
*
* @param response The response of the server.
diff --git a/lang/qt/tests/t-encrypt.cpp b/lang/qt/tests/t-encrypt.cpp
index 5bd472af..f25da317 100644
--- a/lang/qt/tests/t-encrypt.cpp
+++ b/lang/qt/tests/t-encrypt.cpp
@@ -303,7 +303,7 @@ private:
killAgent(mDir.path());
- /* Now create a new homedir which with we test symetric decrypt. */
+ /* Now create a new homedir which with we test symmetric decrypt. */
QTemporaryDir tmp;
qputenv("GNUPGHOME", tmp.path().toUtf8());
QFile agentConf(tmp.path() + QStringLiteral("/gpg-agent.conf"));