1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

- Fix build with KDE32

PR:		ports/62584
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-02-09 15:21:56 +00:00
parent 774190c632
commit 5e20eeb3dc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=100495

View File

@ -0,0 +1,14 @@
--- kbear/lib/jobclasses/kbearcopyjob.cpp.orig Mon Feb 9 13:13:28 2004
+++ kbear/lib/jobclasses/kbearcopyjob.cpp Mon Feb 9 13:13:56 2004
@@ -1080,11 +1080,7 @@
} else if (m_mode == Move) // Moving a file
{
KBearFileCopyJob * moveJob = KBearFileCopyJob::file_move( m_destID, m_sourceID, (*it).uSource, (*it).uDest, (*it).permissions, bOverwrite, false, false/*no GUI*/ );
- #if KDE_VERSION_MINOR < 2
moveJob->setSourceSize( (*it).size );
- #else
- moveJob->setSourceSize64( (*it).size );
- #endif
newjob = moveJob;
kdDebug(7007) << "KBearCopyJob::copyNextFile : Moving " << (*it).uSource.prettyURL() << " to " << (*it).uDest.prettyURL() << endl;
emit moving( this, (*it).uSource, (*it).uDest );