1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Ansgar Burchardt <ansgar@43-1.org>
Date: Sun, 18 Apr 2010 18:33:06 +0900
Subject: Fix POD syntax error
--- a/Excel.pm
+++ b/Excel.pm
@@ -99,14 +99,6 @@
_getColName($rhAttr->{xl_ignorecase},
$rhAttr->{xl_skiphidden},
$oWkS, 0, $MinCol, $MaxCol-$MinCol+1);
-=cmmt
- my $HidCols=0;
- if $rhAttr->{xl_skiphidden} {
- for (my $i = $MinCol, $HidCols = 0; $i <= $MaxCol; $i++) {
- $HidCols++ if $oWkS->{ColWidth}[$i] && $oWkS->{ColWidth}[$i] == 0;
- };
- }
-=cut
my $sTblN = ($rhAttr->{xl_ignorecase})? uc($oWkS->{Name}): $oWkS->{Name};
$hTbl{$sTblN} = {
xl_t_vtbl => undef,
@@ -1082,7 +1074,7 @@
=item Type and Format
-The current version not support date/time and text formating.
+The current version not support date/time and text formatting.
=item Joins
|