forked from qt-creator/qt-creator
Core: Fix IFindFilter::defaultShortcut() in wrong cpp file
Change-Id: I4393dbb059454333ef98a0749a3f0176557a2f5e Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -386,11 +386,6 @@ QStringListModel *Find::replaceCompletionModel()
|
||||
return &(d->m_replaceCompletionModel);
|
||||
}
|
||||
|
||||
QKeySequence IFindFilter::defaultShortcut() const
|
||||
{
|
||||
return QKeySequence();
|
||||
}
|
||||
|
||||
// declared in textfindconstants.h
|
||||
QTextDocument::FindFlags textDocumentFlagsForFindFlags(FindFlags flags)
|
||||
{
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <coreplugin/coreicons.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QKeySequence>
|
||||
#include <QPainter>
|
||||
#include <QPixmap>
|
||||
|
||||
@@ -218,6 +219,11 @@
|
||||
|
||||
namespace Core {
|
||||
|
||||
QKeySequence IFindFilter::defaultShortcut() const
|
||||
{
|
||||
return QKeySequence();
|
||||
}
|
||||
|
||||
FindFlags IFindFilter::supportedFindFlags() const
|
||||
{
|
||||
return FindCaseSensitively
|
||||
|
||||
Reference in New Issue
Block a user