diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-05-13 13:10:27 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-13 16:27:43 +0200 |
commit | cdffe556c8fcca034b10cf91f0b05c17d835bc7b (patch) | |
tree | 189cbd59652eee1b2783a8323a7194100c78fd07 /Userland/Libraries/LibGUI/PasswordInputDialog.h | |
parent | 1f82beded3ae3664265f1ddf6075f64ca5a08cde (diff) | |
download | serenity-cdffe556c8fcca034b10cf91f0b05c17d835bc7b.zip |
LibGUI+Userland: Make Dialog::ExecResult an enum class
Diffstat (limited to 'Userland/Libraries/LibGUI/PasswordInputDialog.h')
-rw-r--r-- | Userland/Libraries/LibGUI/PasswordInputDialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/PasswordInputDialog.h b/Userland/Libraries/LibGUI/PasswordInputDialog.h index ee3200d792..78923bd0de 100644 --- a/Userland/Libraries/LibGUI/PasswordInputDialog.h +++ b/Userland/Libraries/LibGUI/PasswordInputDialog.h @@ -17,7 +17,7 @@ class PasswordInputDialog : public Dialog { public: virtual ~PasswordInputDialog() override = default; - static int show(Window* parent_window, String& text_value, String title, String server, String username); + static ExecResult show(Window* parent_window, String& text_value, String title, String server, String username); private: explicit PasswordInputDialog(Window* parent_window, String title, String server, String username); |