mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-28 14:42:34 +02:00
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:
parent
e4a70a5f03
commit
744e2668df
@ -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'.
|
||||
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user