Author: fabriceb
Date: 2009-05-12 16:17:30 +0200 (Tue, 12 May 2009)
New Revision: 18170
Modified:
plugins/sfEasyGMapPlugin/trunk/lib/GMapMarker.class.php
Log:
[sfEasyGMapPlugin] trunk - correction of a small mistake : from private to
protected in GMapMarker.class.php
Modified: plugins/sfEasyGMapPlugin/trunk/lib/GMapMarker.class.php
===================================================================
--- plugins/sfEasyGMapPlugin/trunk/lib/GMapMarker.class.php 2009-05-12
14:01:12 UTC (rev 18169)
+++ plugins/sfEasyGMapPlugin/trunk/lib/GMapMarker.class.php 2009-05-12
14:17:30 UTC (rev 18170)
@@ -13,28 +13,28 @@
*
* @var string
*/
- private $js_name = null;
+ protected $js_name = null;
/**
* Latitude - deprecated
*
* @var float
*/
- private $lat = null;
+ protected $lat = null;
/**
* Longitude - deprecated
*
* @var float
*/
- private $lng = null;
+ protected $lng = null;
/**
* Coordinates
*
* @var GMapCoord
*/
- private $coord = null;
- private $icon = null;
- private $events = array();
- private $custom_properties = array();
+ protected $coord = null;
+ protected $icon = null;
+ protected $events = array();
+ protected $custom_properties = array();
/**
* @param string $js_name Javascript name of the marker
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en
-~----------~----~----~----~------~----~------~--~---