diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-19 01:05:59 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-19 01:05:59 +0200 |
commit | 3a33b8ea0813ab769f0bfa7348428dfccefb0898 (patch) | |
tree | df803244c691339bf328450a9bed25e433443902 /AK/AKString.h | |
parent | 18785ba5c31974ce6834d446186ccb689bacad4a (diff) | |
download | serenity-3a33b8ea0813ab769f0bfa7348428dfccefb0898.zip |
VisualBuilder: Hook up everything needed for widget property editing.
It's now possible to edit widget properties inline in the properties window.
We're currently relying on the basic GVariant conversion functions to do
all the "parsing" but that's not gonna be good enough.
Diffstat (limited to 'AK/AKString.h')
-rw-r--r-- | AK/AKString.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/AKString.h b/AK/AKString.h index cd13f7f722..27efb80051 100644 --- a/AK/AKString.h +++ b/AK/AKString.h @@ -61,6 +61,7 @@ public: { } + int to_int(bool& ok) const; unsigned to_uint(bool& ok) const; String to_lowercase() const |