From 21b991f23f41fb1625ad2b53e0d118474d30a947 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sun, 8 May 2016 12:13:08 +0200 Subject: Catch if we call the base implementation. --- common/bufferadaptor.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common') diff --git a/common/bufferadaptor.h b/common/bufferadaptor.h index 0087643..ad50582 100644 --- a/common/bufferadaptor.h +++ b/common/bufferadaptor.h @@ -22,6 +22,7 @@ #include #include #include +#include namespace Sink { @@ -38,10 +39,12 @@ public: } virtual QVariant getProperty(const QByteArray &key) const { + qFatal("Tried to get property: " + key); return QVariant(); } virtual void setProperty(const QByteArray &key, const QVariant &value) { + qFatal("Tried to get property: " + key); } virtual QList availableProperties() const { -- cgit v1.2.3