~ubuntu-branches/ubuntu/precise/kde4libs/precise-updates

« back to all changes in this revision

Viewing changes to kross/ui/view.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
333
333
    d->collection->addAction("remove", removeaction);
334
334
    connect(removeaction, SIGNAL(triggered()), this, SLOT(slotRemove()) );
335
335
 
336
 
    connect(this, SIGNAL(enabledChanged(const QString&)), this, SLOT(slotEnabledChanged(const QString&)));
 
336
    connect(this, SIGNAL(enabledChanged(QString)), this, SLOT(slotEnabledChanged(QString)));
337
337
    //expandAll();
338
338
}
339
339
 
350
350
    QItemSelectionModel* selectionmodel = new QItemSelectionModel(m, this);
351
351
    setSelectionModel(selectionmodel);
352
352
 
353
 
    connect(selectionModel(), SIGNAL(selectionChanged(const QItemSelection&,const QItemSelection&)),
 
353
    connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
354
354
            this, SLOT(slotSelectionChanged()));
355
 
    connect(m, SIGNAL(dataChanged(const QModelIndex&,const QModelIndex&)),
356
 
            this, SLOT(slotDataChanged(const QModelIndex&,const QModelIndex&)));
 
355
    connect(m, SIGNAL(dataChanged(QModelIndex,QModelIndex)),
 
356
            this, SLOT(slotDataChanged(QModelIndex,QModelIndex)));
357
357
}
358
358
 
359
359
bool ActionCollectionView::isModified() const