~osomon/oxide/override-touchUngrabEvent

« back to all changes in this revision

Viewing changes to qt/core/api/oxideqnavigationrequest.cc

  • Committer: Chris Coulson
  • Date: 2016-01-13 18:16:11 UTC
  • Revision ID: chris.coulson@canonical.com-20160113181611-vo55lgwngvcj9u1h
Various clean-ups in soon-to-be-public headers. Also, we rename header files based on whether they're going to be public or not

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  OxideQNavigationRequest::Action action_;
38
38
};
39
39
 
40
 
OxideQNavigationRequest::~OxideQNavigationRequest() {}
41
 
 
42
40
OxideQNavigationRequest::OxideQNavigationRequest(const QUrl& url,
43
41
                                                 Disposition disposition,
44
42
                                                 bool user_gesture) :
45
43
    d_ptr(new OxideQNavigationRequestPrivate(url, disposition, user_gesture)) {}
46
44
 
 
45
OxideQNavigationRequest::~OxideQNavigationRequest() {}
 
46
 
47
47
QUrl OxideQNavigationRequest::url() const {
48
48
  Q_D(const OxideQNavigationRequest);
49
49