diff options
author | Faissal Bensefia <faissaloo@gmail.com> | 2019-05-26 03:08:36 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-26 04:08:36 +0200 |
commit | 411cdf067b5b82c96fca5880c790931818f0d757 (patch) | |
tree | 88e3d62ab56154bbbcc42fb0da301fcd213f747b /LibGUI/GVariant.h | |
parent | 79dba9a545b6b7f54dbbee0c718019c7d50b5380 (diff) | |
download | serenity-411cdf067b5b82c96fca5880c790931818f0d757.zip |
AK: Implement String::to_int (#99)
Diffstat (limited to 'LibGUI/GVariant.h')
-rw-r--r-- | LibGUI/GVariant.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GVariant.h b/LibGUI/GVariant.h index 5fee08ef9d..38cdfd713b 100644 --- a/LibGUI/GVariant.h +++ b/LibGUI/GVariant.h @@ -194,7 +194,7 @@ private: RawPoint as_point; RawSize as_size; RawRect as_rect; - } m_value; + } m_value; Type m_type { Type::Invalid }; }; |