summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/Path.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGfx/Path.h')
-rw-r--r--Userland/Libraries/LibGfx/Path.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGfx/Path.h b/Userland/Libraries/LibGfx/Path.h
index 662edb3732..de60976ad4 100644
--- a/Userland/Libraries/LibGfx/Path.h
+++ b/Userland/Libraries/LibGfx/Path.h
@@ -6,10 +6,10 @@
#pragma once
+#include <AK/DeprecatedString.h>
#include <AK/HashMap.h>
#include <AK/NonnullRefPtrVector.h>
#include <AK/Optional.h>
-#include <AK/String.h>
#include <AK/Vector.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Point.h>
@@ -245,7 +245,7 @@ public:
Path copy_transformed(AffineTransform const&) const;
- String to_string() const;
+ DeprecatedString to_string() const;
private:
void invalidate_split_lines()