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

« back to all changes in this revision

Viewing changes to kalarm/reminder.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:
72
72
    mTime->setFixedSize(mTime->sizeHint());
73
73
    connect(mTime, SIGNAL(toggled(bool)), SLOT(slotReminderToggled(bool)));
74
74
#ifdef USE_AKONADI
75
 
    connect(mTime, SIGNAL(valueChanged(const KCalCore::Duration&)), SIGNAL(changed()));
 
75
    connect(mTime, SIGNAL(valueChanged(KCalCore::Duration)), SIGNAL(changed()));
76
76
#else
77
 
    connect(mTime, SIGNAL(valueChanged(const KCal::Duration&)), SIGNAL(changed()));
 
77
    connect(mTime, SIGNAL(valueChanged(KCal::Duration)), SIGNAL(changed()));
78
78
#endif
79
79
    connect(mTimeSignCombo, SIGNAL(currentIndexChanged(int)), SIGNAL(changed()));
80
80
    topLayout->addWidget(mTime, 0, Qt::AlignLeft);