Skip to content

Commit

Permalink
remove compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikl committed May 23, 2012
1 parent 8994ca4 commit 156e2c8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions picnet.table.filter.full.js
Original file line number Diff line number Diff line change
Expand Up @@ -15737,7 +15737,7 @@ pn.ui.filter.GenericListFilter.prototype.getFilterStates = function() {

/**
* @protected
* @param {!Element} filter The filter whose state we require.
* @param {Element} filter The filter whose state we require.
* @return {pn.ui.filter.FilterState} The filter state for the specified filter.
*/
pn.ui.filter.GenericListFilter.prototype.getFilterStateForFilter =
Expand Down Expand Up @@ -16290,7 +16290,11 @@ pn.ui.filter.TableFilter.prototype.getFilterStates = function() {
};


/** @inheritDoc */
/**
* @protected
* @param {!Element} filter The filter whose state we require.
* @return {pn.ui.filter.FilterState} The filter state for the specified filter.
*/
pn.ui.filter.TableFilter.prototype.getFilterStateForFilter = function(filter) {
var state = pn.ui.filter.TableFilter.superClass_.
getFilterStateForFilter.call(this, filter);
Expand Down
2 changes: 1 addition & 1 deletion src/pn/ui/filter/GenericListFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ pn.ui.filter.GenericListFilter.prototype.getFilterStates = function() {

/**
* @protected
* @param {!Element} filter The filter whose state we require.
* @param {Element} filter The filter whose state we require.
* @return {pn.ui.filter.FilterState} The filter state for the specified filter.
*/
pn.ui.filter.GenericListFilter.prototype.getFilterStateForFilter =
Expand Down
6 changes: 5 additions & 1 deletion src/pn/ui/filter/TableFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,11 @@ pn.ui.filter.TableFilter.prototype.getFilterStates = function() {
};


/** @inheritDoc */
/**
* @protected
* @param {!Element} filter The filter whose state we require.
* @return {pn.ui.filter.FilterState} The filter state for the specified filter.
*/
pn.ui.filter.TableFilter.prototype.getFilterStateForFilter = function(filter) {
var state = pn.ui.filter.TableFilter.superClass_.
getFilterStateForFilter.call(this, filter);
Expand Down

0 comments on commit 156e2c8

Please sign in to comment.