Fix swapped creationTime and lastModified
This commit is contained in:
parent
ccb4a62f9c
commit
5e3569c803
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ bool SharePlugin::receivePacket(const NetworkPacket &np)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SharePlugin::finished(KJob *job, const qint64 dateModified, const qint64 dateCreated, const bool open)
|
void SharePlugin::finished(KJob *job, const qint64 dateCreated, const qint64 dateModified, const bool open)
|
||||||
{
|
{
|
||||||
FileTransferJob *ftjob = qobject_cast<FileTransferJob *>(job);
|
FileTransferJob *ftjob = qobject_cast<FileTransferJob *>(job);
|
||||||
if (ftjob && !job->error()) {
|
if (ftjob && !job->error()) {
|
||||||
|
|
Loading…
Reference in a new issue