Module: tools Branch: master Commit: e5800b36578db52b920a5a8869132c261ba7431b URL: https://source.winehq.org/git/tools.git/?a=commit;h=e5800b36578db52b920a5a88...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Mar 23 14:58:33 2022 +0100
testbot/cgi: Rename FormPage::SaveProperties() to Save().
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/ObjectModel/CGI/FormPage.pm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/testbot/lib/ObjectModel/CGI/FormPage.pm b/testbot/lib/ObjectModel/CGI/FormPage.pm index e432fcb..bc8ce47 100644 --- a/testbot/lib/ObjectModel/CGI/FormPage.pm +++ b/testbot/lib/ObjectModel/CGI/FormPage.pm @@ -361,7 +361,7 @@ sub SaveProperty($$$) die "Pure virtual function FormPage::SaveProperty called"; }
-sub SaveProperties($) +sub Save($) { my ($self) = @_;
@@ -394,13 +394,6 @@ sub SaveProperties($) return 1; }
-sub Save($) -{ - my ($self) = @_; - - return $self->SaveProperties(); -} - sub OnAction($$) { my ($self, $Action) = @_;