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

« back to all changes in this revision

Viewing changes to examples/akonalendar/mainwidget.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:
79
79
    /*
80
80
     * React to user orders
81
81
     */
82
 
    connect( mCollectionList, SIGNAL(clicked(const Akonadi::Collection&)),
83
 
             SLOT(collectionClicked(const Akonadi::Collection&)) );
 
82
    connect( mCollectionList, SIGNAL(clicked(Akonadi::Collection)),
 
83
             SLOT(collectionClicked(Akonadi::Collection)) );
84
84
    connect( mIncidenceList, SIGNAL(clicked(QModelIndex)), SLOT(itemActivated(QModelIndex)) );
85
85
}
86
86