summaryrefslogtreecommitdiff
path: root/plugingui/layout.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-11-07 10:39:46 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2015-11-07 10:39:46 +0100
commita65ca7af57feaf7a4ea73f7e071a72eb9b3a1e24 (patch)
tree6cf9fa3b8b57513b8eae030bdc6e1a18495d7e75 /plugingui/layout.h
parent60109b8a737059058d2b0664c7ea88ec501490f7 (diff)
Refactored Painter.
Diffstat (limited to 'plugingui/layout.h')
-rw-r--r--plugingui/layout.h4
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.