summaryrefslogtreecommitdiff
path: root/scene/gui/line_edit.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-03-04 11:42:53 +0100
committerGitHub <noreply@github.com>2022-03-04 11:42:53 +0100
commit8845798b44883b9b2c5a552aaa85530298c8a71a (patch)
tree7f5f4797d241d6f3a619b668830137cdb7ed67de /scene/gui/line_edit.h
parentf94233ee539e4ddfd6497d0f37257c6dd59efcb7 (diff)
parenta06f82ca4dbdff633424e59243dc411bb8070b99 (diff)
Merge pull request #58739 from Calinou/control-add-constructors
Add optional constructor arguments to more Control nodes
Diffstat (limited to 'scene/gui/line_edit.h')
-rw-r--r--scene/gui/line_edit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/line_edit.h b/scene/gui/line_edit.h
index 1519c09d73..444c9a1c50 100644
--- a/scene/gui/line_edit.h
+++ b/scene/gui/line_edit.h
@@ -332,7 +332,7 @@ public:
void show_virtual_keyboard();
- LineEdit();
+ LineEdit(const String &p_placeholder = String());
~LineEdit();
};