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
Network
libktorrent
Commits
36beec0c
Commit
36beec0c
authored
Jun 05, 2021
by
Andrius Štikonas
Browse files
Fix clang warning and processedAmount deprecation notice.
parent
56be4b3f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/diskio/movedatafilesjob.cpp
View file @
36beec0c
...
...
@@ -151,7 +151,7 @@ void MoveDataFilesJob::startMoving()
active_dst
=
i
.
value
();
Out
(
SYS_GEN
|
LOG_DEBUG
)
<<
"Moving "
<<
active_src
<<
" -> "
<<
active_dst
<<
endl
;
connect
(
active_job
,
&
KIO
::
Job
::
result
,
this
,
&
MoveDataFilesJob
::
onJobDone
);
connect
(
active_job
,
qOverload
<
KJob
*
,
KJob
::
Unit
,
qulonglong
>
(
&
KIO
::
Job
::
processedAmount
)
,
this
,
&
MoveDataFilesJob
::
onTransferred
);
connect
(
active_job
,
&
KIO
::
Job
::
processedAmount
Changed
,
this
,
&
MoveDataFilesJob
::
onTransferred
);
connect
(
active_job
,
&
KIO
::
Job
::
speed
,
this
,
&
MoveDataFilesJob
::
onSpeed
);
todo
.
erase
(
i
);
...
...
src/utp/packetbuffer.h
View file @
36beec0c
...
...
@@ -29,7 +29,7 @@
namespace
utp
{
class
Header
;
struct
Header
;
/**
* Special packet buffer for UTP packets
...
...
Write
Preview
Markdown
is supported
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