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
System
Dolphin
Commits
3834cf78
Commit
3834cf78
authored
Oct 16, 2022
by
Laurent Montel
Browse files
Fix compile against qt6.4
"error C2397: conversion from 'qsizetype' to 'int' requires a narrowing conversion"
parent
197a7f69
Pipeline
#248921
passed with stage
in 7 minutes and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kitemviews/private/kdirectorycontentscounterworker.cpp
View file @
3834cf78
...
...
@@ -103,7 +103,7 @@ KDirectoryContentsCounterWorker::CountResult KDirectoryContentsCounterWorker::su
}
else
{
filters
|=
QDir
::
AllEntries
;
}
return
{
dir
.
entryList
(
filters
).
count
(),
0
};
return
{
static_cast
<
int
>
(
dir
.
entryList
(
filters
).
count
()
)
,
0
};
#else
const
uint
maxRecursiveLevel
=
DetailsModeSettings
::
directorySizeCount
()
?
1
:
DetailsModeSettings
::
recursiveDirectorySizeLimit
();
...
...
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