diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-12-07 13:01:55 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-08 17:14:48 +0100 |
commit | c3720128420556789d2c78cb592e4919bac129de (patch) | |
tree | 25398fdf00377a53f161a724d7723860d9814698 /Userland/DevTools | |
parent | 44ff3a374f7429f95ee6ea8b331b0b3f98f043f0 (diff) | |
download | serenity-c3720128420556789d2c78cb592e4919bac129de.zip |
LibSQL+SQLServer+SQLStudio+sql: Give ID types a distinct name
Makes it clearer what is being stored, especially in future clients that
will store a bunch of statement IDs.
Diffstat (limited to 'Userland/DevTools')
-rw-r--r-- | Userland/DevTools/SQLStudio/MainWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/SQLStudio/MainWidget.h b/Userland/DevTools/SQLStudio/MainWidget.h index 3c025d5a19..f3c1f032cd 100644 --- a/Userland/DevTools/SQLStudio/MainWidget.h +++ b/Userland/DevTools/SQLStudio/MainWidget.h @@ -65,7 +65,7 @@ private: Optional<DeprecatedString> read_next_line_of_editor(); size_t m_current_line_for_parsing { 0 }; int m_editor_line_level { 0 }; - u64 m_connection_id { 0 }; + SQL::ConnectionID m_connection_id { 0 }; }; } |