diff options
| author | javalizard <> | 2010-04-18 03:15:01 +0000 | 
|---|---|---|
| committer | javalizard <> | 2010-04-18 03:15:01 +0000 | 
| commit | 5aff249d0b574f90f527b7af60604439f8fa3bef (patch) | |
| tree | 283801d30bd4c847d9079e66391a03823050ad24 /framework/Web/UI/WebControls/TImageButton.php | |
| parent | c8b27e28e32cd8a93c2203b2c391d0b8e8ecf86a (diff) | |
ensured that the WebControls are calling their parent __construct methods
Diffstat (limited to 'framework/Web/UI/WebControls/TImageButton.php')
| -rw-r--r-- | framework/Web/UI/WebControls/TImageButton.php | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TImageButton.php b/framework/Web/UI/WebControls/TImageButton.php index 3fa9845a..65cf972f 100644 --- a/framework/Web/UI/WebControls/TImageButton.php +++ b/framework/Web/UI/WebControls/TImageButton.php @@ -4,7 +4,7 @@   *
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @link http://www.pradosoft.com/
 - * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2010 PradoSoft
   * @license http://www.pradosoft.com/license/
   * @version $Id$
   * @package System.Web.UI.WebControls
 @@ -402,6 +402,7 @@ class TImageClickEventParameter extends TEventParameter  	 */
  	public function __construct($x,$y)
  	{
 +		parent::__construct();
  		$this->_x=$x;
  		$this->_y=$y;
  	}
  | 
