From 837fde209c7f4dab677ad16978aeb646dad91c1d Mon Sep 17 00:00:00 2001 From: Chris Nehren Date: Tue, 22 Apr 2008 18:18:21 +0000 Subject: [PATCH] remove evil dastardly hard tabs, replace with spaces --- lib/WebGUI/Form/_control.skeleton | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/WebGUI/Form/_control.skeleton b/lib/WebGUI/Form/_control.skeleton index d8a94ff63..a417273dd 100644 --- a/lib/WebGUI/Form/_control.skeleton +++ b/lib/WebGUI/Form/_control.skeleton @@ -53,14 +53,14 @@ Defaults to the setting textBoxSize or 30 if that's not set. Specifies how big o =cut sub definition { - my $class = shift; - my $session = shift; - my $definition = shift || []; - push(@{$definition}, { - size=>{ - defaultValue=>$session->setting->get("textBoxSize") || 30 - }, - }); + my $class = shift; + my $session = shift; + my $definition = shift || []; + push(@{$definition}, { + size=>{ + defaultValue=>$session->setting->get("textBoxSize") || 30 + }, + }); return $class->SUPER::definition($session, $definition); } @@ -87,7 +87,7 @@ Does some special processing. =cut sub getValue { - my $self = shift; + my $self = shift; my $value = $self->SUPER::getValue(@_); # ... do your work here @@ -104,8 +104,8 @@ Renders an input tag of type text. =cut sub toHtml { - my $self = shift; - my $value = $self->fixMacros($self->fixQuotes($self->fixSpecialCharacters($self->getDefaultValue))); + my $self = shift; + my $value = $self->fixMacros($self->fixQuotes($self->fixSpecialCharacters($self->getDefaultValue))); return 'get("extras").' />'; }