Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM Data Exporter
Commits
b36b2bb1
Commit
b36b2bb1
authored
Nov 07, 2021
by
Laurent Montel
😁
Browse files
Add qCWarning
parent
e28deb78
Pipeline
#95010
passed with stage
in 9 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/abstractimportexportjob.cpp
View file @
b36b2bb1
...
...
@@ -326,7 +326,9 @@ QStringList AbstractImportExportJob::restoreResourceFile(const QString &resource
QDir
dir
(
mTempDirName
);
dir
.
mkdir
(
defaultPath
);
const
QString
copyToDirName
(
mTempDirName
+
QLatin1Char
(
'/'
)
+
defaultPath
);
QDir
().
mkpath
(
copyToDirName
);
if
(
!
QDir
().
mkpath
(
copyToDirName
))
{
qCWarning
(
PIMDATAEXPORTERCORE_LOG
)
<<
" impossible to create :"
<<
copyToDirName
;
}
for
(
int
i
=
0
,
total
=
mListResourceFile
.
size
();
i
<
total
;
++
i
)
{
ResourceFiles
value
=
mListResourceFile
.
at
(
i
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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