1
0
Fork 0
forked from len0rd/rockbox

qeditor: fix uninitialised variable

Change-Id: I12a785e554b7d598b91e526af1b7ebc1fc44f610
This commit is contained in:
Amaury Pouly 2015-10-03 23:09:35 +02:00
parent f01fb3ca59
commit 3fdb86ea41
2 changed files with 7 additions and 1 deletions

View file

@ -193,7 +193,7 @@ public:
DisplayValue, /* "value" */
};
SocFieldCachedItemDelegate(QObject *parent = 0):QStyledItemDelegate(parent) {}
SocFieldCachedItemDelegate(QObject *parent = 0);
virtual QString displayText(const QVariant& value, const QLocale& locale) const;
void SetMode(DisplayMode mode) { m_mode = mode; }
DisplayMode GetMode() const { return m_mode; }