vfs: Remove VfsSuffixPrivate

This commit is contained in:
Christian Kamm 2018-11-15 09:30:27 +01:00 committed by Kevin Ottens
parent 5b26b739f0
commit 9196aa8e0a
No known key found for this signature in database
GPG key ID: 074BBBCB8DECC9E2
2 changed files with 0 additions and 9 deletions

View file

@ -21,13 +21,8 @@
namespace OCC {
class VfsSuffixPrivate
{
};
VfsSuffix::VfsSuffix(QObject *parent)
: Vfs(parent)
, d_ptr(new VfsSuffixPrivate)
{
}

View file

@ -21,13 +21,9 @@
namespace OCC {
class VfsSuffixPrivate;
class VfsSuffix : public Vfs
{
Q_OBJECT
Q_DECLARE_PRIVATE(VfsSuffix)
const QScopedPointer<VfsSuffixPrivate> d_ptr;
public:
explicit VfsSuffix(QObject *parent = nullptr);