removing an unnecessary function left in [2401] by mistake

This commit is contained in:
fgerlits 2006-10-30 12:46:19 +00:00
parent 7b23ed6103
commit 2ebbffb20b
1 changed files with 0 additions and 17 deletions

View File

@ -285,23 +285,6 @@ class SearchWindow : public GuiWindow
: remoteSearchCriteria;
}
/**
* Set the search criteria for the currently selected kind.
* Sets either localSearchCriteria or remoteSearchCriteria
* depending on the value of searchIsLocal().
*
* @param criteria the new criteria to be saved.
*/
void
setSearchCriteria(Ptr<SearchCriteria>::Ref criteria) throw ()
{
if (searchIsLocal()) {
localSearchCriteria = criteria;
} else {
remoteSearchCriteria = criteria;
}
}
/**
* Get the number of search results found by the last search
* of the currently selected kind.