Fix compiler error

Place public: in the correct location.
This commit is contained in:
LajamerrMittesdine 2018-05-16 11:34:29 -04:00 committed by GitHub
parent 7b192897da
commit d7a317efc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,10 +32,10 @@ namespace widgets {
class SplitContainer : public BaseWidget, pajlada::Signals::SignalHolder class SplitContainer : public BaseWidget, pajlada::Signals::SignalHolder
{ {
Q_OBJECT Q_OBJECT
public:
struct Node; struct Node;
public:
// fourtf: !!! preserve the order of left, up, right and down // fourtf: !!! preserve the order of left, up, right and down
enum Direction { Left, Above, Right, Below }; enum Direction { Left, Above, Right, Below };