~ubuntu-branches/ubuntu/jaunty/psi/jaunty

« back to all changes in this revision

Viewing changes to src/urlbookmark.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
                e.setAttribute("url",url_);
63
63
        return e;
64
64
}
 
65
 
 
66
bool URLBookmark::operator==(const URLBookmark & other) const
 
67
{
 
68
        return
 
69
            name_ == other.name_ &&
 
70
            url_  == other.url_;
 
71
}