projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6555d5f
)
Vor dem Aufruf von Funktionen auf der Instanz $self muss $self ge-blesst werden.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 14 Sep 2007 14:08:17 +0000
(14:08 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 14 Sep 2007 14:08:17 +0000
(14:08 +0000)
SL/ReportGenerator.pm
patch
|
blob
|
history
diff --git
a/SL/ReportGenerator.pm
b/SL/ReportGenerator.pm
index
cdcf18f
..
7469451
100644
(file)
--- a/
SL/ReportGenerator.pm
+++ b/
SL/ReportGenerator.pm
@@
-48,9
+48,11
@@
sub new {
$self->{data_present} = 0;
+ bless $self, $type;
+
$self->set_options(@_) if (@_);
- return
bless $self, $type
;
+ return
$self
;
}
sub set_columns {