Adding void return statements

This commit is contained in:
Matt Donovan
2015-06-08 00:03:57 -05:00
committed by Vladimir Enchev
parent 7d948265f3
commit 69e651bb43
2 changed files with 5 additions and 5 deletions

View File

@ -119,12 +119,12 @@
/** /**
* Adds a column specification to a GridLayout. * Adds a column specification to a GridLayout.
*/ */
public addColumn(itemSpec: ItemSpec); public addColumn(itemSpec: ItemSpec): void;
/** /**
* Adds a row specification to a GridLayout. * Adds a row specification to a GridLayout.
*/ */
public addRow(itemSpec: ItemSpec); public addRow(itemSpec: ItemSpec): void;
/** /**
* Removes a column specification from a GridLayout. * Removes a column specification from a GridLayout.
@ -134,7 +134,7 @@
/** /**
* Removes all columns specification from a GridLayout. * Removes all columns specification from a GridLayout.
*/ */
removeColumns(): void; public removeColumns(): void;
/** /**
* Removes a row specification from a GridLayout. * Removes a row specification from a GridLayout.
@ -144,7 +144,7 @@
/** /**
* Removes all rows specification from a GridLayout. * Removes all rows specification from a GridLayout.
*/ */
removeRows(): void; public removeRows(): void;
/** /**
* Gets array of column specifications defined on this instance of GridLayout. * Gets array of column specifications defined on this instance of GridLayout.

View File

@ -12,7 +12,7 @@ export class GridLayout extends common.GridLayout {
protected onRowAdded(itemSpec: common.ItemSpec) { protected onRowAdded(itemSpec: common.ItemSpec) {
this.invalidate(); this.invalidate();
} }
protected onColumnAdded(itemSpec: common.ItemSpec) { protected onColumnAdded(itemSpec: common.ItemSpec) {
this.invalidate(); this.invalidate();