From c0d74c206098c9051c030b037abc6fe70718a07f Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 27 Apr 2024 18:39:31 +0200 Subject: [PATCH] Made query_result in QueryBuilder protected. --- modules/database/query_builder.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/database/query_builder.h b/modules/database/query_builder.h index 0a4a0876c..f20df998c 100644 --- a/modules/database/query_builder.h +++ b/modules/database/query_builder.h @@ -155,8 +155,6 @@ public: QueryBuilder(); virtual ~QueryBuilder(); - String query_result; - protected: static void _bind_methods(); @@ -237,7 +235,7 @@ protected: Ref _psph_bind(); Ref _psphi_bind(const String &p_id); Ref _psphr_bind(const String &p_raw_id); - + Ref _w_bind(const String &str); Ref _ew_bind(const String &str); @@ -246,6 +244,8 @@ protected: Ref _end_command_bind(); Ref _reset_bind(); + + String query_result; }; #endif