~ubuntu-branches/ubuntu/quantal/kdepimlibs/quantal-proposed

« back to all changes in this revision

Viewing changes to akonadi/agenttypemodel.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 14:37:07 UTC
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: package-import@ubuntu.com-20111214143707-m0qplh3hsd957ukv
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
AgentTypeModel::AgentTypeModel( QObject *parent )
63
63
  : QAbstractItemModel( parent ), d( new Private( this ) )
64
64
{
65
 
  connect( AgentManager::self(), SIGNAL( typeAdded( const Akonadi::AgentType& ) ),
66
 
           this, SLOT( typeAdded( const Akonadi::AgentType& ) ) );
67
 
  connect( AgentManager::self(), SIGNAL( typeRemoved( const Akonadi::AgentType& ) ),
68
 
           this, SLOT( typeRemoved( const Akonadi::AgentType& ) ) );
 
65
  connect( AgentManager::self(), SIGNAL(typeAdded(Akonadi::AgentType)),
 
66
           this, SLOT(typeAdded(Akonadi::AgentType)) );
 
67
  connect( AgentManager::self(), SIGNAL(typeRemoved(Akonadi::AgentType)),
 
68
           this, SLOT(typeRemoved(Akonadi::AgentType)) );
69
69
}
70
70
 
71
71
AgentTypeModel::~AgentTypeModel()