Skip to content

Commit

Permalink
remove unused searchBegan signal
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Sep 8, 2020
1 parent 58b3ae8 commit 950fda6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
7 changes: 0 additions & 7 deletions python/core/auto_generated/locator/qgslocator.sip.in
Expand Up @@ -147,13 +147,6 @@ This list is updated when preparing the search
%Docstring
Emitted whenever a filter encounters a matching ``result`` after the :py:func:`~QgsLocator.fetchResults` method
is called.
%End

void searchBegan();
%Docstring
Emitted when locator has begun a search, before actually preparing it.

.. versionadded:: 3.16
%End

void searchPrepared();
Expand Down
1 change: 0 additions & 1 deletion src/core/locator/qgslocator.cpp
Expand Up @@ -125,7 +125,6 @@ void QgsLocator::registerFilter( QgsLocatorFilter *filter )
void QgsLocator::fetchResults( const QString &string, const QgsLocatorContext &c, QgsFeedback *feedback )
{
mAutocompletionList.clear();
emit searchBegan();

QgsLocatorContext context( c );
// ideally this should not be required, as well behaved callers
Expand Down
6 changes: 0 additions & 6 deletions src/core/locator/qgslocator.h
Expand Up @@ -160,12 +160,6 @@ class CORE_EXPORT QgsLocator : public QObject
*/
void foundResult( const QgsLocatorResult &result );

/**
* Emitted when locator has begun a search, before actually preparing it.
* \since QGIS 3.16
*/
void searchBegan();

/**
* Emitted when locator has prepared the search (\see QgsLocatorFilter::prepare)
* before the search is actually performed
Expand Down

0 comments on commit 950fda6

Please sign in to comment.