summaryrefslogtreecommitdiff
path: root/Userland/Utilities/arp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/arp.cpp')
-rw-r--r--Userland/Utilities/arp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Utilities/arp.cpp b/Userland/Utilities/arp.cpp
index 930f7f339d..4254a920b7 100644
--- a/Userland/Utilities/arp.cpp
+++ b/Userland/Utilities/arp.cpp
@@ -5,11 +5,11 @@
*/
#include <AK/Assertions.h>
+#include <AK/DeprecatedString.h>
#include <AK/IPv4Address.h>
#include <AK/JsonObject.h>
#include <AK/MACAddress.h>
#include <AK/QuickSort.h>
-#include <AK/String.h>
#include <AK/Types.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/Stream.h>
@@ -53,10 +53,10 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
};
struct Column {
- String title;
+ DeprecatedString title;
Alignment alignment { Alignment::Left };
int width { 0 };
- String buffer;
+ DeprecatedString buffer;
};
Vector<Column> columns;