diff options
Diffstat (limited to 'plugingui/layout.h')
-rw-r--r-- | plugingui/layout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/layout.h b/plugingui/layout.h index 9814f7e..72e4fc8 100644 --- a/plugingui/layout.h +++ b/plugingui/layout.h @@ -38,7 +38,7 @@ public: LayoutItem(); virtual ~LayoutItem(); - void setLayoutParent(Layout *parent); + void setLayoutParent(Layout* parent); virtual void resize(int width, int height) = 0; virtual void move(size_t x, size_t y) = 0; @@ -48,7 +48,7 @@ public: virtual size_t height() = 0; private: - Layout *parent; + Layout* parent; }; //! \brief Abtract Layout class. |