summaryrefslogtreecommitdiff
path: root/Libraries/LibCore
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-12-30 01:37:48 +0100
committerAndreas Kling <kling@serenityos.org>2020-12-30 01:38:29 +0100
commit0f3b0b65ae46b7cbeec4e4baafc8cf15b521949a (patch)
tree5065d0a329977787c2b4660a7bbcf146adb9f753 /Libraries/LibCore
parent7dc5a3ead86627d11b1bf8d243750e5e3390c067 (diff)
downloadserenity-0f3b0b65ae46b7cbeec4e4baafc8cf15b521949a.zip
LibGUI+LibCore: Remove the GUI::SizePolicy enum
Diffstat (limited to 'Libraries/LibCore')
-rw-r--r--Libraries/LibCore/Object.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Libraries/LibCore/Object.h b/Libraries/LibCore/Object.h
index 7247ab97bd..9e7ff40265 100644
--- a/Libraries/LibCore/Object.h
+++ b/Libraries/LibCore/Object.h
@@ -300,12 +300,6 @@ const LogStream& operator<<(const LogStream&, const Object&);
return false; \
})
-#define REGISTER_SIZE_POLICY_PROPERTY(property_name, getter, setter) \
- REGISTER_ENUM_PROPERTY( \
- property_name, getter, setter, GUI::SizePolicy, \
- { GUI::SizePolicy::Fill, "Fill" }, \
- { GUI::SizePolicy::Fixed, "Fixed" })
-
#define REGISTER_TEXT_ALIGNMENT_PROPERTY(property_name, getter, setter) \
REGISTER_ENUM_PROPERTY( \
property_name, getter, setter, Gfx::TextAlignment, \