Vcs/Text search: Remove a few addAutoReleaseObject uses

Using a QObject parent suffices here.

Change-Id: I4dc5448511d55bf14fbd8f810e91336a49e94094
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
hjk
2018-02-02 10:08:21 +01:00
parent e7792f8f50
commit 713b8636ea
34 changed files with 80 additions and 79 deletions

View File

@@ -157,8 +157,8 @@ static void updateComboEntries(QComboBox *combo, bool onTop)
using namespace Internal;
SearchEngine::SearchEngine()
: d(new SearchEnginePrivate)
SearchEngine::SearchEngine(QObject *parent)
: QObject(parent), d(new SearchEnginePrivate)
{
}