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

« back to all changes in this revision

Viewing changes to kmail/xfaceconfigurator.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:
33
33
#include "xfaceconfigurator.h"
34
34
 
35
35
#include <akonadi/contact/contactsearchjob.h>
36
 
#include <kabc/addressee.h>
37
36
#include <kcombobox.h>
38
37
#include <kdialog.h>
39
38
#include <kfiledialog.h>
128
127
    connect( mSourceCombo, SIGNAL(highlighted(int)),
129
128
             widgetStack, SLOT(setCurrentIndex(int)) );
130
129
    connect( mSourceCombo, SIGNAL(activated(int)),
131
 
             widgetStack, SLOT(setCurrentIndex (int)) );
 
130
             widgetStack, SLOT(setCurrentIndex(int)) );
132
131
    connect( mEnableCheck, SIGNAL(toggled(bool)),
133
132
             mSourceCombo, SLOT(setEnabled(bool)) );
134
133
    connect( mEnableCheck, SIGNAL(toggled(bool)),
253
252
    Akonadi::ContactSearchJob *job = new Akonadi::ContactSearchJob( this );
254
253
    job->setLimit( 1 );
255
254
    job->setQuery( Akonadi::ContactSearchJob::Email, email, Akonadi::ContactSearchJob::ExactMatch );
256
 
    connect( job, SIGNAL( result( KJob* ) ), SLOT( slotDelayedSelectFromAddressbook( KJob* ) ) );
 
255
    connect( job, SIGNAL(result(KJob*)), SLOT(slotDelayedSelectFromAddressbook(KJob*)) );
257
256
  }
258
257
 
259
258
  void XFaceConfigurator::slotDelayedSelectFromAddressbook( KJob *job )