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/notifier/NotifierMessage.h | |
| 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/notifier/NotifierMessage.h')
| -rw-r--r-- | src/modules/notifier/NotifierMessage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/notifier/NotifierMessage.h b/src/modules/notifier/NotifierMessage.h index 02c72078a..60c0d76b4 100644 --- a/src/modules/notifier/NotifierMessage.h +++ b/src/modules/notifier/NotifierMessage.h @@ -75,12 +75,12 @@ public: * \brief Returns the original irc message * \return const QString & */ - inline const QString & text() const { return m_szText; } + const QString & text() const { return m_szText; } /** * \brief Returns the message icon * \return QPixmap * */ - inline QPixmap * pixmap() const { return m_pPixmap; } + QPixmap * pixmap() const { return m_pPixmap; } /** * \brief Updates the aspect of this message * \return void |
