summaryrefslogtreecommitdiffstats
path: root/common/bufferadaptor.h
diff options
context:
space:
mode:
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 {