bunny-hu - 2014-01-20

First of all, thanks a lot for this useful stuff, its save a lot of time for me! Respect!
I found an error in the code, Robert write to the alignShrinktofit() "This doesn't actually work."
I digging a bit the code, because actually I need this style and I found why it is not working.

ExcelWriterXML_Style.php line 275:
if (!empty($this->shinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}
Change to this (one R is missing from the $this->shrinktofit)
if (!empty($this->shrinktofit)){$shrinktofit = 'ss:ShrinkToFit="1"';}

After this modification the "alignShrinktofit()" style working very well.
Cheers
Karoly