File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ shared_ptr<FrameLeaf> FrameTree::findEmptyFrameNearFocusGeometrically(shared_ptr
383383 return closestFrame;
384384}
385385
386- Frame * FrameTree::focusedFramePlainPtr ()
386+ FrameLeaf * FrameTree::focusedFramePlainPtr ()
387387{
388388 auto shared = focusedFrame ();
389389 if (shared) {
Original file line number Diff line number Diff line change @@ -82,12 +82,12 @@ class FrameTree : public Object {
8282public: // soon to be come private:
8383 std::shared_ptr<Frame> root_;
8484 Link_<Frame> rootLink_;
85- DynChild_<Frame > focused_frame_;
85+ DynChild_<FrameLeaf > focused_frame_;
8686 // ! replace a node in the frame tree, either modifying old's parent or the root_
8787 void replaceNode (std::shared_ptr<Frame> old, std::shared_ptr<Frame> replacement);
8888private:
8989 static std::shared_ptr<FrameLeaf> findEmptyFrameNearFocusGeometrically (std::shared_ptr<Frame> subtree);
90- Frame * focusedFramePlainPtr ();
90+ FrameLeaf * focusedFramePlainPtr ();
9191 // ! cycle the frames within the current tree
9292 void cycle_frame (std::function<size_t (size_t ,size_t )> indexAndLenToIndex);
9393 void cycle_frame (int delta);
You can’t perform that action at this time.
0 commit comments