Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 5d8446d2074649ee8939b13a97d00f34 > files > 6

kdepim-3.4.2-13mdk.src.rpm

--- kdepim-3.2/korganizer/koeditorgantt.cpp--	2004-02-17 17:22:50.000000000 +0100
+++ kdepim-3.2/korganizer/koeditorgantt.cpp	2004-02-17 17:24:11.000000000 +0100
@@ -339,13 +339,13 @@ void KOEditorGantt::updateFreeBusyData( 
 			  KOGroupware::instance()->parseFreeBusy( fbText ) );
     } else
       KOGroupware::instance()->downloadFreeBusyData( attendee->email(), this,
-						     SLOT( slotInsertFreeBusy( const QString&, FreeBusy* ) ) );
+						     SLOT( slotInsertFreeBusy( const QString&, KCal::FreeBusy* ) ) );
   }
 }
 
 // Set the Free Busy list for everyone having this email address
 // If fb == 0, this disabled the free busy list for them
-void KOEditorGantt::slotInsertFreeBusy( const QString& email, FreeBusy* fb )
+void KOEditorGantt::slotInsertFreeBusy( const QString& email, KCal::FreeBusy* fb )
 {
   if( fb )
     fb->sortList();
--- kdepim-3.2/korganizer/kogroupware.h--	2004-02-17 17:24:56.000000000 +0100
+++ kdepim-3.2/korganizer/kogroupware.h	2004-02-17 17:25:50.000000000 +0100
@@ -58,7 +58,7 @@ protected slots:
   void slotResult( KIO::Job* );
   void slotData(  KIO::Job*, const QByteArray &data );
 signals:
-  void fbDownloaded( const QString&, FreeBusy*);
+  void fbDownloaded( const QString&, KCal::FreeBusy*);
 
 private:
   KOGroupware* mKogroupware;
--- kdepim-3.2/korganizer/kogroupware.cpp--	2004-02-17 17:24:52.000000000 +0100
+++ kdepim-3.2/korganizer/kogroupware.cpp	2004-02-17 17:25:40.000000000 +0100
@@ -585,7 +585,7 @@ bool KOGroupware::downloadFreeBusyData( 
   }
 
   FBDownloadJob* job = new FBDownloadJob( email, sourceURL, this, "fb_download_job" );
-  connect( job, SIGNAL( fbDownloaded( const QString&, FreeBusy*) ),
+  connect( job, SIGNAL( fbDownloaded( const QString&, KCal::FreeBusy*) ),
            receiver, member );
 
   return true;