~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/geodata/data/GeoDataScreenOverlay.cpp

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    return *this;
47
47
}
48
48
 
 
49
bool GeoDataScreenOverlay::operator==(const GeoDataScreenOverlay& other) const
 
50
{
 
51
    return equals(other) &&
 
52
           d->m_overlayXY == other.d->m_overlayXY &&
 
53
           d->m_screenXY == other.d->m_screenXY &&
 
54
           d->m_rotationXY == other.d->m_rotationXY &&
 
55
           d->m_size == other.d->m_size &&
 
56
           d->m_rotation == other.d->m_rotation;
 
57
}
 
58
 
 
59
bool GeoDataScreenOverlay::operator!=(const GeoDataScreenOverlay& other) const
 
60
{
 
61
    return !this->operator==(other);
 
62
}
 
63
 
49
64
GeoDataScreenOverlay::~GeoDataScreenOverlay()
50
65
{
51
66
    delete d;