comparison Lib/IMPL/SQL/Schema/Type.pm @ 194:4d0e1962161c

Replaced tabs with spaces IMPL::Web::View - fixed document model, new features (control classes, document constructor parameters)
author cin
date Tue, 10 Apr 2012 20:08:29 +0400
parents d1676be8afcc
children 5c82eec23bb6
comparison
equal deleted inserted replaced
193:8e8401c0aea4 194:4d0e1962161c
27 27
28 sub SameValue { 28 sub SameValue {
29 my ($this,$other) = @_; 29 my ($this,$other) = @_;
30 30
31 return ( 31 return (
32 $this->{$name} eq $other->name 32 $this->{$name} eq $other->name
33 and equals($this->{$maxLength},$other->{$maxLength}) 33 and equals($this->{$maxLength},$other->{$maxLength})
34 and equals($this->{$scale},$other->{$scale}) 34 and equals($this->{$scale},$other->{$scale})
35 ); 35 );
36 } 36 }
37 37
38 1; 38 1;
39 39