~charlesk/indicator-datetime/lp-1001595

« back to all changes in this revision

Viewing changes to src/appointment.cpp

  • Committer: CI bot
  • Author(s): Charles Kerr
  • Date: 2014-01-31 11:46:08 UTC
  • mfrom: (290.2.86 cpp)
  • Revision ID: ps-jenkins@lists.canonical.com-20140131114608-8sfzhimcfdywmk46
Finally land this. Other, still open bugs will be fixed in subsequent commits. Fixes: 793450, 1271484, 1274046

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *   Charles Kerr <charles.kerr@canonical.com>
 
18
 */
 
19
 
 
20
#include <datetime/appointment.h>
 
21
 
 
22
namespace unity {
 
23
namespace indicator {
 
24
namespace datetime {
 
25
 
 
26
/****
 
27
*****
 
28
****/
 
29
 
 
30
bool Appointment::operator==(const Appointment& that) const
 
31
{
 
32
    return (color==that.color)
 
33
        && (summary==that.summary)
 
34
        && (url==that.url)
 
35
        && (uid==that.uid)
 
36
        && (is_event==that.is_event)
 
37
        && (has_alarms==that.has_alarms)
 
38
        && (begin==that.begin)
 
39
        && (end==that.end);
 
40
}
 
41
 
 
42
/****
 
43
*****
 
44
****/
 
45
 
 
46
} // namespace datetime
 
47
} // namespace indicator
 
48
} // namespace unity