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
b5ec534a
Verified
Commit
b5ec534a
authored
Mar 26, 2020
by
Luca Beltrame
Browse files
Another KIO build fix
parent
25467455
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/messagewin.cpp
View file @
b5ec534a
...
...
@@ -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