~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to kresources/groupwise/kcal_resourcegroupwise.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
  mJobData.clear();
157
157
 
158
158
  mDownloadJob = KIO::get( url, KIO::NoReload, KIO::HideProgressInfo );
159
 
  connect( mDownloadJob, SIGNAL( result( KJob * ) ),
160
 
           SLOT( slotJobResult( KJob * ) ) );
161
 
  connect( mDownloadJob, SIGNAL( data( KIO::Job *, const QByteArray & ) ),
162
 
           SLOT( slotJobData( KIO::Job *, const QByteArray & ) ) );
 
159
  connect( mDownloadJob, SIGNAL(result(KJob*)),
 
160
           SLOT(slotJobResult(KJob*)) );
 
161
  connect( mDownloadJob, SIGNAL(data(KIO::Job*,QByteArray)),
 
162
           SLOT(slotJobData(KIO::Job*,QByteArray)) );
163
163
 
164
164
  mProgress = KPIM::ProgressManager::instance()->createProgressItem(
165
165
    KPIM::ProgressManager::getUniqueID(), i18n("Downloading calendar") );
166
166
  connect( mProgress,
167
 
           SIGNAL( progressItemCanceled( KPIM::ProgressItem * ) ),
168
 
           SLOT( cancelLoad() ) );
 
167
           SIGNAL(progressItemCanceled(KPIM::ProgressItem*)),
 
168
           SLOT(cancelLoad()) );
169
169
 
170
170
  return true;
171
171
}