~ubuntu-branches/ubuntu/vivid/freemedforms-project/vivid-proposed

« back to all changes in this revision

Viewing changes to libs/calendar/common.h

  • Committer: Package Import Robot
  • Author(s): Eric Maeker
  • Date: 2014-09-14 13:58:26 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20140914135826-5bbbnd3hievwm358
Tags: 0.9.4-1
New upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    /** returns the first date of the view in function of a random date */
63
63
    CALENDAR_EXPORT QDate getFirstDateByRandomDate(ViewType viewType, const QDate &randomDate);
64
64
 
65
 
    /** returns the bounding days interval for a month. WARNING: days are not necessarily inside the month. */
 
65
    /** returns the bounding days interval for a month. \note days are not necessarily inside the month. */
66
66
    CALENDAR_EXPORT QPair<QDate, QDate> getBoundingMonthDaysInterval(int year, int month);
67
67
 
68
 
    /** returns the bounding days interval for a month. WARNING: days are not necessarily inside the month.
 
68
    /** returns the bounding days interval for a month. \note days are not necessarily inside the month.
69
69
     * Same function as the previous one but with a QDate instead of a year+month.
70
70
     */
71
71
    CALENDAR_EXPORT QPair<QDate, QDate> getBoundingMonthDaysInterval(const QDate &date);