Skip to content

Commit 3d59f5a

Browse files
committed
Fix typo
Fixes: #648
1 parent 2ceeade commit 3d59f5a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/gui/newwizard/pages/accountconfiguredwizardpage.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
<item>
145145
<widget class="QRadioButton" name="syncEverythingRadioButton">
146146
<property name="text">
147-
<string>Synchronize all exisitng spaces</string>
147+
<string>Synchronize all existing spaces</string>
148148
</property>
149149
<property name="checked">
150150
<bool>true</bool>

src/libsync/discovery.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void ProcessDirectoryJob::process()
117117
if (handleExcluded(path._target, e.localEntry.name(), e.localEntry.isDirectory() || e.serverEntry.isDirectory(), isHidden, e.localEntry.isSymLink())) {
118118
// the file only exists in the db
119119
if (!e.localEntry.isValid() && e.dbEntry.isValid()) {
120-
qCWarning(lcDisco) << u"Removing db entry for non exisitng ignored file:" << path._original;
120+
qCWarning(lcDisco) << u"Removing db entry for non existing ignored file:" << path._original;
121121
_discoveryData->_statedb->deleteFileRecord(path._original, true);
122122
}
123123
continue;

test/testexcludedfiles.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ private Q_SLOTS:
9999
QVERIFY(check_isExcluded(QStringLiteral("/a/foo (conflicted copy bar)"), keepHidden));
100100
QVERIFY(check_isExcluded(QStringLiteral("/a/.b"), excludeHidden));
101101

102-
// test non exisitng folder
102+
// test non existing folder
103103
QVERIFY(check_isExcluded(QStringLiteral("/a/.b"), excludeHidden, false));
104104
}
105105

0 commit comments

Comments
 (0)