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
PIM
KAlarm
Commits
f87b3be2
Commit
f87b3be2
authored
Mar 26, 2020
by
Luca Beltrame
Committed by
Laurent Montel
Mar 26, 2020
Browse files
Another KIO build fix
(cherry picked from commit
b5ec534a
)
parent
6dc736d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/messagewin.cpp
View file @
f87b3be2
...
...
@@ -401,7 +401,7 @@ void MessageWin::initView()
#if KIO_VERSION < QT_VERSION_CHECK(5, 69, 0)
auto
statJob
=
KIO
::
stat
(
url
,
KIO
::
StatJob
::
SourceSide
,
0
,
KIO
::
HideProgressInfo
);
#else
auto
statJob
=
KIO
::
statDetails
(
url
,
KIO
::
StatJob
::
SourceSide
,
KIO
::
Stat
Detail
::
Basic
,
KIO
::
HideProgressInfo
);
auto
statJob
=
KIO
::
statDetails
(
url
,
KIO
::
StatJob
::
SourceSide
,
KIO
::
StatBasic
,
KIO
::
HideProgressInfo
);
#endif
const
bool
exists
=
statJob
->
exec
();
const
bool
isDir
=
statJob
->
statResult
().
isDir
();
...
...
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