2021-02-15 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'Q3Url' dependency from 'RDUrl'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-02-15 18:38:33 -05:00
parent e4a70a5f03
commit 744e2668df
3 changed files with 9 additions and 7 deletions

View File

@ -21162,3 +21162,5 @@
* Removed the 'Q3PointArray' dependency from 'RDTransportButton'.
2021-02-15 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'Q3PointArray' dependency from 'RDMarkerBar'.
2021-02-15 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'Q3Url' dependency from 'RDUrl'.

View File

@ -2,7 +2,7 @@
//
// A URL Handling Class with Support for SMB URLs.
//
// (C) Copyright 2002-2006,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License
@ -18,16 +18,16 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include <rdurl.h>
#include "rdurl.h"
RDUrl::RDUrl()
: Q3Url()
: QUrl()
{
}
RDUrl::RDUrl(const QString &url)
: Q3Url(url)
: QUrl(url)
{
}

View File

@ -2,7 +2,7 @@
//
// A URL Handling Class with Support for SMB URLs.
//
// (C) Copyright 2002-2006,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License
@ -22,9 +22,9 @@
#ifndef RDURL_H
#define RDURL_H
#include <q3url.h>
#include <QUrl>
class RDUrl : public Q3Url
class RDUrl : public QUrl
{
public:
RDUrl();