Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
KBackup
Commits
835e46ae
Commit
835e46ae
authored
Dec 24, 2021
by
Laurent Montel
Browse files
Fix compile error against qt6
parent
3d5b422a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Archiver.cxx
View file @
835e46ae
...
...
@@ -528,7 +528,7 @@ bool Archiver::createArchive(const QStringList &includes, const QStringList &exc
addDirFiles
(
dir
);
}
else
addFile
(
info
.
absoluteFilePath
());
addFile
(
QFileInfo
(
info
.
absoluteFilePath
())
)
;
}
finishSlice
();
...
...
@@ -1042,7 +1042,7 @@ void Archiver::addDirFiles(QDir &dir)
addDirFiles
(
dir
);
}
else
addFile
(
list
[
i
].
absoluteFilePath
());
addFile
(
QFileInfo
(
list
[
i
].
absoluteFilePath
())
)
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment