Skip to content

Commit

Permalink
Remove unneeded semicolon and fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pvuorela committed Mar 2, 2020
1 parent 7f62ba6 commit 18432e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugin/archivemodel.cpp
Expand Up @@ -340,7 +340,7 @@ FileExtractionResult ArchiveModelPrivate::doExtractFile(const QString &entryName
return result;
}

qCDebug(lcArchiveLog) << "Extraing a file:" << targetPath;
qCDebug(lcArchiveLog) << "Extracting a file:" << targetPath;

bool extracted = false;
QString out;
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/filemodel.h
Expand Up @@ -208,7 +208,7 @@ private slots:
SelectedCountChanged = (1 << 13),
ContentChanged = (1 << 14),
};
Q_DECLARE_FLAGS(ChangedFlags, Changed);
Q_DECLARE_FLAGS(ChangedFlags, Changed)

private:
void recountSelectedFiles();
Expand Down

0 comments on commit 18432e1

Please sign in to comment.