diff options
| author | 2018-11-27 21:38:17 -0500 | |
|---|---|---|
| committer | 2018-11-28 22:02:03 -0500 | |
| commit | 7de8aed0e6497b4d60c07047fee488690cb2bf00 (patch) | |
| tree | 262c4ec16051bd37fb453e4de5d934573a9b62b3 /src/modules/options | |
| parent | Remove Q_UNUSED macros (diff) | |
| download | KVIrc-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/options')
| -rw-r--r-- | src/modules/options/OptionsWidget_message.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/options/OptionsWidget_message.h b/src/modules/options/OptionsWidget_message.h index 188a09389..fb65be65d 100644 --- a/src/modules/options/OptionsWidget_message.h +++ b/src/modules/options/OptionsWidget_message.h @@ -130,8 +130,8 @@ private: KviMessageTypeSettings * m_pMsgType; public: - inline int optionId() { return m_iOptId; }; - inline KviMessageTypeSettings * msgType() { return m_pMsgType; }; + int optionId() const { return m_iOptId; } + KviMessageTypeSettings * msgType() const { return m_pMsgType; } }; class MessageColorListWidgetItem : public KviTalListWidgetText @@ -144,7 +144,7 @@ public: int m_iClrIdx; public: - inline int clrIdx() { return m_iClrIdx; }; + int clrIdx() const { return m_iClrIdx; } }; class MessageColorListWidgetItemDelegate : public QItemDelegate |
