aboutsummaryrefslogtreecommitdiff
path: root/include/gui/LineSeparator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/LineSeparator.hpp')
-rw-r--r--include/gui/LineSeparator.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gui/LineSeparator.hpp b/include/gui/LineSeparator.hpp
index 8c39114..7996071 100644
--- a/include/gui/LineSeparator.hpp
+++ b/include/gui/LineSeparator.hpp
@@ -5,11 +5,11 @@
namespace gsr {
class LineSeparator : public Widget {
public:
- enum class Type {
+ enum class Orientation {
HORIZONTAL
};
- LineSeparator(Type type, float width);
+ LineSeparator(Orientation orientation, float width);
LineSeparator(const LineSeparator&) = delete;
LineSeparator& operator=(const LineSeparator&) = delete;
@@ -18,7 +18,7 @@ namespace gsr {
mgl::vec2f get_size() override;
private:
- Type type;
+ Orientation orientation;
float width;
};
} \ No newline at end of file