Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/WebCore/platform/graphics/qt/PathQt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Ref<PathImpl> PathQt::copy() const
return create(m_path);
}

QPainterPath PathQt::platformPath() const
PlatformPathPtr PathQt::platformPath() const
{
return m_path;
}
Expand Down
4 changes: 1 addition & 3 deletions Source/WebCore/platform/graphics/qt/PathQt.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class PathQt final : public PathImpl {
PathQt& operator=(const PathQt&);
PathQt& operator=(PathQt&& other);

QPainterPath platformPath() const;
PlatformPathPtr platformPath() const;

void addPath(const PathQt&, const AffineTransform&);

Expand All @@ -68,8 +68,6 @@ class PathQt final : public PathImpl {
private:
Ref<PathImpl> copy() const final;

QPainterPath ensurePlatformPath() { return platformPath(); }

void add(PathMoveTo) final;

void add(PathLineTo) final;
Expand Down