aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/list
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-27 21:38:17 -0500
committerGravatar IceN9ne2018-11-28 22:02:03 -0500
commit7de8aed0e6497b4d60c07047fee488690cb2bf00 (patch)
tree262c4ec16051bd37fb453e4de5d934573a9b62b3 /src/modules/list
parentRemove Q_UNUSED macros (diff)
downloadKVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.tar.gz
KVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.tar.bz2
KVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.zip
Remove unnecessary usages of the inline keyword per language evolution.
Diffstat (limited to 'src/modules/list')
-rw-r--r--src/modules/list/ListWindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/list/ListWindow.h b/src/modules/list/ListWindow.h
index 08c8811b0..997c471a4 100644
--- a/src/modules/list/ListWindow.h
+++ b/src/modules/list/ListWindow.h
@@ -80,7 +80,7 @@ private:
public:
bool operator<(const QTreeWidgetItem & other) const;
- inline ChannelTreeWidgetItemData * itemData() { return m_pData; };
+ ChannelTreeWidgetItemData * itemData() const { return m_pData; }
};
class ChannelTreeWidget : public KviThemedTreeWidget