From d7a317efc7048d644be2af45e82946bd0a491f2e Mon Sep 17 00:00:00 2001 From: LajamerrMittesdine Date: Wed, 16 May 2018 11:34:29 -0400 Subject: [PATCH] Fix compiler error Place public: in the correct location. --- src/widgets/splitcontainer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/splitcontainer.hpp b/src/widgets/splitcontainer.hpp index de203833f..b30cc270b 100644 --- a/src/widgets/splitcontainer.hpp +++ b/src/widgets/splitcontainer.hpp @@ -32,10 +32,10 @@ namespace widgets { class SplitContainer : public BaseWidget, pajlada::Signals::SignalHolder { Q_OBJECT - + + public: struct Node; -public: // fourtf: !!! preserve the order of left, up, right and down enum Direction { Left, Above, Right, Below };