fix lineedit callbacks (#4028)

This commit is contained in:
Florian Blasius 2023-11-29 06:13:23 +01:00 committed by GitHub
parent 9bc8d203fe
commit e55bde4c97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -15,8 +15,8 @@ export component LineEdit {
out property <bool> has-focus <=> i-base.has-focus;
in-out property <string> text <=> i-base.text;
callback accepted(string /* text */);
callback edited(string /* text */);
callback accepted <=> i-base.accepted;
callback edited <=> i-base.edited;
public function select-all() {
i-base.select-all();

View file

@ -14,8 +14,8 @@ export component LineEdit {
out property <bool> has-focus <=> i-base.has-focus;
in-out property <string> text <=> i-base.text;
callback accepted(/* text */ string);
callback edited(/* text */ string);
callback accepted <=> i-base.accepted;
callback edited <=> i-base.edited;
public function select-all() {
i-base.select-all();

View file

@ -15,8 +15,8 @@ export component LineEdit {
out property <bool> has-focus: i-base.has-focus;
in-out property <string> text <=> i-base.text;
callback accepted(/* text */ string);
callback edited(/* text */ string);
callback accepted <=> i-base.accepted;
callback edited <=> i-base.edited;
public function select-all() {
i-base.select-all();