~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to src/urlbookmark.cpp

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "urlbookmark.h"
25
25
 
26
 
URLBookmark::URLBookmark(const QString& name, const QString& url) : name_(name), url_(url) 
27
 
 
26
URLBookmark::URLBookmark(const QString& name, const QString& url) : name_(name), url_(url)
 
27
{
28
28
}
29
29
 
30
30
URLBookmark::URLBookmark(const QDomElement& el)
32
32
        fromXml(el);
33
33
}
34
34
 
35
 
const QString& URLBookmark::name() const 
36
 
37
 
        return name_; 
 
35
const QString& URLBookmark::name() const
 
36
{
 
37
        return name_;
38
38
}
39
39
 
40
 
const QString& URLBookmark::url() const 
41
 
42
 
        return url_; 
 
40
const QString& URLBookmark::url() const
 
41
{
 
42
        return url_;
43
43
}
44
44
 
45
45
bool URLBookmark::isNull() const