~michihenning/unity-scopes-api/fix-crossbuild

« back to all changes in this revision

Viewing changes to src/scopes/utility/internal/BufferedSearchReplyImpl.cpp

  • Committer: Tarmac
  • Author(s): Pawel Stolowski
  • Date: 2016-06-28 09:56:43 UTC
  • mfrom: (677.2.6 update-push-filters)
  • Revision ID: tarmac-20160628095643-1iq0wxmb41jh2ill
Marked the push(Filters const&, FilterState const&) method of SearchReply and SearchListenerBase
as deprecated and provided push methods which take Filters argument only. Fixes: https://bugs.launchpad.net/bugs/1566952.

Approved by PS Jenkins bot, Marcus Tomlinson.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    return upstream_->push(filters, filter_state);
93
93
}
94
94
 
 
95
bool BufferedSearchReplyImpl::push(unity::scopes::Filters const& filters)
 
96
{
 
97
    return upstream_->push(filters);
 
98
}
 
99
 
95
100
void BufferedSearchReplyImpl::push_surfacing_results_from_cache() noexcept
96
101
{
97
102
    upstream_->push_surfacing_results_from_cache();