From a847bd463a0951a65558ed576e32784dc002080f Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sat, 24 Jun 2023 20:54:01 +0100 Subject: [PATCH] FileManager: Remove unused PropertyValuePair struct --- Userland/Applications/FileManager/PropertiesWindow.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Userland/Applications/FileManager/PropertiesWindow.h b/Userland/Applications/FileManager/PropertiesWindow.h index fa49da45e8..7124462b35 100644 --- a/Userland/Applications/FileManager/PropertiesWindow.h +++ b/Userland/Applications/FileManager/PropertiesWindow.h @@ -29,12 +29,6 @@ private: PropertiesWindow(DeprecatedString const& path, Window* parent = nullptr); ErrorOr create_widgets(bool disable_rename); - struct PropertyValuePair { - DeprecatedString property; - DeprecatedString value; - Optional link = {}; - }; - struct PermissionMasks { mode_t read; mode_t write;