Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed PowerPoint2007 writer attributes to protected #20

Merged
merged 1 commit into from
Apr 27, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Classes/PHPPowerPoint/Writer/PowerPoint2007.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,49 +39,49 @@ class PHPPowerPoint_Writer_PowerPoint2007 implements PHPPowerPoint_Writer_IWrite
*
* @var boolean
*/
private $_office2003compatibility = false;
protected $_office2003compatibility = false;

/**
* Private writer parts
*
* @var PHPPowerPoint_Writer_PowerPoint2007_WriterPart[]
*/
private $_writerParts;
protected $_writerParts;

/**
* Private PHPPowerPoint
*
* @var PHPPowerPoint
*/
private $_presentation;
protected $_presentation;

/**
* Private unique PHPPowerPoint_Worksheet_BaseDrawing HashTable
*
* @var PHPPowerPoint_HashTable
*/
private $_drawingHashTable;
protected $_drawingHashTable;

/**
* Use disk caching where possible?
*
* @var boolean
*/
private $_useDiskCaching = false;
protected $_useDiskCaching = false;

/**
* Disk caching directory
*
* @var string
*/
private $_diskCachingDirectory;
protected $_diskCachingDirectory;

/**
* Layout pack to use
*
* @var PHPPowerPoint_Writer_PowerPoint2007_LayoutPack
*/
private $_layoutPack;
protected $_layoutPack;

/**
* Create a new PHPPowerPoint_Writer_PowerPoint2007
Expand Down