Refactoring. Move "inline" specifier to the definition of the function.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2017-04-01 10:23:44 +03:00
parent 660406ab35
commit 1d82d96562
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ public:
QMarginsF &operator*=(qreal factor) Q_DECL_NOTHROW;
QMarginsF &operator/=(qreal divisor);
Q_DECL_CONSTEXPR inline QMargins toMargins() const Q_DECL_NOTHROW;
Q_DECL_CONSTEXPR QMargins toMargins() const Q_DECL_NOTHROW;
private:
qreal m_left;

View File

@ -63,10 +63,10 @@ public:
void SetWidget(QWidget *widget, bool own = true);
/** Returns widget to be popped up. */
inline QWidget* Widget() const;
QWidget* Widget() const;
/** Returns true if widget is owned by this popup widget, false otherwise. */
inline bool isOwned() const;
bool isOwned() const;
int GetLifeTime() const;
void SetLifeTime(int value);