summaryrefslogtreecommitdiffstats
path: root/common/bufferadaptor.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-03-15 17:25:15 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-03-15 17:25:15 +0100
commit52047ca6d72957dd36c13e1cd93453a7c48e4b17 (patch)
tree8001d66aa3fefd91bc461fd44ac0f76f258dc5e7 /common/bufferadaptor.h
parent6f032b73c42ac4133e1edecc2ef436645ad7ba69 (diff)
downloadsink-52047ca6d72957dd36c13e1cd93453a7c48e4b17.tar.gz
sink-52047ca6d72957dd36c13e1cd93453a7c48e4b17.zip
Fixed warnings
Diffstat (limited to 'common/bufferadaptor.h')
-rw-r--r--common/bufferadaptor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bufferadaptor.h b/common/bufferadaptor.h
index 0ae7bf5..fd4809b 100644
--- a/common/bufferadaptor.h
+++ b/common/bufferadaptor.h
@@ -39,12 +39,12 @@ public:
39 } 39 }
40 virtual QVariant getProperty(const QByteArray &key) const 40 virtual QVariant getProperty(const QByteArray &key) const
41 { 41 {
42 qFatal("Tried to get property: " + key); 42 qFatal("Tried to get property: %s", key.data());
43 return QVariant(); 43 return QVariant();
44 } 44 }
45 virtual void setProperty(const QByteArray &key, const QVariant &value) 45 virtual void setProperty(const QByteArray &key, const QVariant &value)
46 { 46 {
47 qFatal("Tried to get property: " + key); 47 qFatal("Tried to get property: %s", key.data());
48 } 48 }
49 virtual QList<QByteArray> availableProperties() const 49 virtual QList<QByteArray> availableProperties() const
50 { 50 {