Skip to content

Commit 7390a7a

Browse files
committed
Fixed some spelling mistakes, keywords added to desktop icon, manpage added
1 parent a3dd56d commit 7390a7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+69
-53
lines changed

QLog.pro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,7 @@ OTHER_FILES += \
381381
res/stylesheet.css \
382382
res/qlog.rc \
383383
res/qlog.desktop \
384+
res/qlog.1 \
384385
res/io.github.foldynl.QLog.metainfo.xml
385386

386387
TRANSLATIONS = i18n/qlog_cs.ts \
@@ -464,6 +465,9 @@ unix:!macx {
464465
desktop.path = $$PREFIX/share/applications/
465466
desktop.files += res/$${TARGET}.desktop
466467

468+
manpage.path = $$PREFIX/usr/share/man/man1
469+
manpage.files += res/$${TARGET}.1
470+
467471
icon.path = $$PREFIX/share/icons/hicolor/256x256/apps
468472
icon.files += res/$${TARGET}.png
469473

core/AlertEvaluator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ bool AlertRule::save()
136136

137137
if ( ruleName.isEmpty() )
138138
{
139-
qCDebug(runtime) << "rule name is emptry - do not save";
139+
qCDebug(runtime) << "rule name is empty - do not save";
140140
return false;
141141
}
142142

core/CallbookManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void CallbookManager::queryCallsign(const QString &callsign)
3131
}
3232

3333
// create an empty object in cache
34-
// if there is the second query for the same call immediatelly after
34+
// if there is the second query for the same call immediately after
3535
// the first query, then it returns a result of empty object
3636
queryCache.insert(callsign, new CallbookResponseData);
3737

core/MembershipQE.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ void MembershipQE::startPlannedDownload()
286286
if ( updatePlan.size() == 0 )
287287
return;
288288

289-
qCDebug(runtime) << "Remaing downloads" << updatePlan.size() << updatePlan;
289+
qCDebug(runtime) << "Remaining downloads" << updatePlan.size() << updatePlan;
290290

291291
// to prevent network overload, qlog will donwload files one-by-one
292292
QPair<QString, QString> nextDownload = updatePlan.at(0);

core/WsjtxUDPReceiver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void WsjtxUDPReceiver::forwardDatagram(const QNetworkDatagram &datagram)
117117
}
118118
}
119119

120-
float WsjtxUDPReceiver::modePeriodLenght(const QString &mode)
120+
float WsjtxUDPReceiver::modePeriodLength(const QString &mode)
121121
{
122122
FCT_IDENTIFICATION;
123123

core/WsjtxUDPReceiver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class WsjtxUDPReceiver : public QObject
126126
Q_OBJECT
127127
public:
128128
explicit WsjtxUDPReceiver(QObject *parent = nullptr);
129-
static float modePeriodLenght(const QString &);
129+
static float modePeriodLength(const QString &);
130130

131131
static quint16 getConfigPort();
132132
static void saveConfigPort(quint16);

cwkey/CWKeyer.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,15 +328,15 @@ void CWKeyer::sendTextImpl(const QString &text)
328328
cwKey->sendText(text);
329329
}
330330

331-
void CWKeyer::imediatellyStop()
331+
void CWKeyer::immediatelyStop()
332332
{
333333
FCT_IDENTIFICATION;
334334

335-
QMetaObject::invokeMethod(this, "immediatellyStopImpl",
335+
QMetaObject::invokeMethod(this, "immediatelyStopImpl",
336336
Qt::QueuedConnection);
337337
}
338338

339-
void CWKeyer::immediatellyStopImpl()
339+
void CWKeyer::immediatelyStopImpl()
340340
{
341341
FCT_IDENTIFICATION;
342342

@@ -348,7 +348,7 @@ void CWKeyer::immediatellyStopImpl()
348348

349349
if ( !cwKey ) return;
350350

351-
cwKey->imediatellyStop();
351+
cwKey->immediatelyStop();
352352
}
353353

354354
void CWKeyer::stopTimerImplt()

cwkey/CWKeyer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ public slots:
3939

4040
void setSpeed(const qint16 wpm);
4141
void sendText(const QString&);
42-
void imediatellyStop();
42+
void immediatelyStop();
4343

4444
private slots:
4545
void openImpl();
4646
void closeImpl();
4747
void setSpeedImpl(const qint16 wpm);
4848
void sendTextImpl(const QString&);
49-
void immediatellyStopImpl();
49+
void immediatelyStopImpl();
5050
void stopTimerImplt();
5151
void keyErrorHandler(const QString&, const QString&);
5252
void cwKeyWPMChangedHandler(qint32);

cwkey/drivers/CWCatKey.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ bool CWCatKey::setWPM(const qint16 wpm)
151151
return true;
152152
}
153153

154-
bool CWCatKey::imediatellyStop()
154+
bool CWCatKey::immediatelyStop()
155155
{
156156
FCT_IDENTIFICATION;
157157

cwkey/drivers/CWCatKey.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CWCatKey : public CWKey
2323

2424
virtual bool sendText(const QString &text) override;
2525
virtual bool setWPM(const qint16 wpm) override;
26-
virtual bool imediatellyStop() override;
26+
virtual bool immediatelyStop() override;
2727

2828
private:
2929
QMutex commandMutex;

0 commit comments

Comments
 (0)