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

« back to all changes in this revision

Viewing changes to akonadi/collectionview.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:
79
79
  mParent->setDragEnabled( true );
80
80
 
81
81
  dragExpandTimer.setSingleShot( true );
82
 
  mParent->connect( &dragExpandTimer, SIGNAL( timeout() ), SLOT( dragExpand() ) );
 
82
  mParent->connect( &dragExpandTimer, SIGNAL(timeout()), SLOT(dragExpand()) );
83
83
 
84
 
  mParent->connect( mParent, SIGNAL( clicked( const QModelIndex& ) ),
85
 
                    mParent, SLOT( itemClicked( const QModelIndex& ) ) );
 
84
  mParent->connect( mParent, SIGNAL(clicked(QModelIndex)),
 
85
                    mParent, SLOT(itemClicked(QModelIndex)) );
86
86
 
87
87
  Control::widgetNeedsAkonadi( mParent );
88
88
}
162
162
  QTreeView::setModel( model );
163
163
  header()->setStretchLastSection( true );
164
164
 
165
 
  connect( selectionModel(), SIGNAL( currentChanged( const QModelIndex&, const QModelIndex& ) ),
166
 
           this, SLOT( itemCurrentChanged( const QModelIndex& ) ) );
 
165
  connect( selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)),
 
166
           this, SLOT(itemCurrentChanged(QModelIndex)) );
167
167
}
168
168
 
169
169
void CollectionView::dragMoveEvent( QDragMoveEvent * event )