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

« back to all changes in this revision

Viewing changes to incidenceeditor-ng/schedulingdialog.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:
67
67
  connect( mWeekdayCombo, SIGNAL(checkedItemsChanged(QStringList)),
68
68
           SLOT(slotMandatoryRolesChanged()) );
69
69
 
70
 
  connect( mResolver, SIGNAL(freeSlotsAvailable(const KCalCore::Period::List &)),
71
 
           mPeriodModel, SLOT(slotNewFreePeriods(const KCalCore::Period::List &)) );
72
 
  connect( mMoveBeginTimeEdit, SIGNAL(timeEdited(const QTime &)),
73
 
           this, SLOT(slotSetEndTimeLabel(const QTime &)) );
 
70
  connect( mResolver, SIGNAL(freeSlotsAvailable(KCalCore::Period::List)),
 
71
           mPeriodModel, SLOT(slotNewFreePeriods(KCalCore::Period::List)) );
 
72
  connect( mMoveBeginTimeEdit, SIGNAL(timeEdited(QTime)),
 
73
           this, SLOT(slotSetEndTimeLabel(QTime)) );
74
74
 
75
75
  mTableView->setModel( mPeriodModel );
76
76
  connect( mTableView->selectionModel(),
77
 
           SIGNAL(currentRowChanged(const QModelIndex &,const QModelIndex &)),
 
77
           SIGNAL(currentRowChanged(QModelIndex,QModelIndex)),
78
78
           this,
79
 
           SLOT( slotRowSelectionChanged(const QModelIndex &,const QModelIndex &)) );
 
79
           SLOT(slotRowSelectionChanged(QModelIndex,QModelIndex)) );
80
80
 
81
81
  mStartDate->setDate( startDate );
82
82
  mEndDate->setDate( mStartDate->date().addDays( 7 ) );