FML Update

This commit is contained in:
Steffen Schröder
2013-12-09 13:05:05 +01:00
parent 690ef2b0bb
commit 666785de90
61 changed files with 408 additions and 200 deletions

View File

@ -190,11 +190,11 @@ abstract class Control implements Renderable {
/**
* Set horizontal and vertical alignment
*
* @param string $halign
* @param string $hAlign
* @param string $vAlign
* @return \FML\Controls\Control
*/
public function setAlign($halign, $vAlign) {
public function setAlign($hAlign, $vAlign) {
$this->setHAlign($hAlign);
$this->setVAlign($vAlign);
return $this;
@ -272,5 +272,3 @@ abstract class Control implements Renderable {
return $xml;
}
}
?>