forked from qt-creator/qt-creator
Fix warnings in ifindsupport.cpp.
Change-Id: I08df8a60ae89f095282ebeedd502fc29e5073704 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
committed by
Eike Ziller
parent
dfcd427900
commit
9b1dfe9248
@@ -95,15 +95,24 @@ using namespace Find;
|
||||
|
||||
void IFindSupport::replace(const QString &before, const QString &after, FindFlags findFlags)
|
||||
{
|
||||
Q_UNUSED(before)
|
||||
Q_UNUSED(after)
|
||||
Q_UNUSED(findFlags)
|
||||
}
|
||||
|
||||
bool IFindSupport::replaceStep(const QString &before, const QString &after, FindFlags findFlags)
|
||||
{
|
||||
Q_UNUSED(before)
|
||||
Q_UNUSED(after)
|
||||
Q_UNUSED(findFlags)
|
||||
return false;
|
||||
}
|
||||
|
||||
int IFindSupport::replaceAll(const QString &before, const QString &after, FindFlags findFlags)
|
||||
{
|
||||
Q_UNUSED(before)
|
||||
Q_UNUSED(after)
|
||||
Q_UNUSED(findFlags)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user