~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to calendarviews/eventviews/month/monthitem.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <QDate>
32
32
#include <QObject>
33
33
 
 
34
namespace CalendarSupport {
 
35
  class Calendar;
 
36
}
 
37
 
34
38
namespace EventViews {
35
39
 
36
40
class MonthGraphicsItem;
269
273
  Q_OBJECT
270
274
 
271
275
  public:
272
 
    IncidenceMonthItem( MonthScene *monthScene, const Akonadi::Item &incidence,
 
276
    IncidenceMonthItem( MonthScene *monthScene,
 
277
                        CalendarSupport::Calendar *calendar,
 
278
                        const Akonadi::Item &incidence,
273
279
                        const QDate &recurStartDate = QDate() );
 
280
 
274
281
    virtual ~IncidenceMonthItem();
275
282
 
276
283
    Akonadi::Item akonadiItem() const;
314
321
    */
315
322
    QColor catColor() const;
316
323
 
 
324
    CalendarSupport::Calendar *mCalendar;
317
325
    KCalCore::Incidence::Ptr mIncidence;
318
326
    Akonadi::Item::Id mAkonadiItemId;
319
327
    int mRecurDayOffset;