diff options
Diffstat (limited to 'framework/Web/UI')
-rw-r--r-- | framework/Web/UI/WebControls/TImageButton.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TImageButton.php b/framework/Web/UI/WebControls/TImageButton.php index a1ca7e2f..842a78ea 100644 --- a/framework/Web/UI/WebControls/TImageButton.php +++ b/framework/Web/UI/WebControls/TImageButton.php @@ -350,12 +350,12 @@ class TImageClickEventParameter extends TEventParameter * the X coordinate of the clicking point
* @var integer
*/
- public $_x=0;
+ private $_x=0;
/**
* the Y coordinate of the clicking point
* @var integer
*/
- public $_y=0;
+ private $_y=0;
/**
* Constructor.
|