forked from qt-creator/qt-creator
Utils: Remove unused function
Change-Id: I0b8fae0e7257a3281573f774862af4c1284a2941 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -166,13 +166,6 @@ void OutputLineParser::addLinkSpecForAbsoluteFilePath(OutputLineParser::LinkSpec
|
|||||||
linkSpecs.append({pos, len, createLinkTarget(filePath, lineNo)});
|
linkSpecs.append({pos, len, createLinkTarget(filePath, lineNo)});
|
||||||
}
|
}
|
||||||
|
|
||||||
void OutputLineParser::addLinkSpecForAbsoluteFilePath(OutputLineParser::LinkSpecs &linkSpecs,
|
|
||||||
const FilePath &filePath, int lineNo, const QRegExp ®ex, int capIndex)
|
|
||||||
{
|
|
||||||
addLinkSpecForAbsoluteFilePath(linkSpecs, filePath, lineNo, regex.pos(capIndex),
|
|
||||||
regex.cap(capIndex).length());
|
|
||||||
}
|
|
||||||
|
|
||||||
void OutputLineParser::addLinkSpecForAbsoluteFilePath(OutputLineParser::LinkSpecs &linkSpecs,
|
void OutputLineParser::addLinkSpecForAbsoluteFilePath(OutputLineParser::LinkSpecs &linkSpecs,
|
||||||
const FilePath &filePath, int lineNo, const QRegularExpressionMatch &match,
|
const FilePath &filePath, int lineNo, const QRegularExpressionMatch &match,
|
||||||
int capIndex)
|
int capIndex)
|
||||||
|
@@ -107,8 +107,6 @@ protected:
|
|||||||
static QString createLinkTarget(const FilePath &filePath, int line, int column);
|
static QString createLinkTarget(const FilePath &filePath, int line, int column);
|
||||||
void addLinkSpecForAbsoluteFilePath(LinkSpecs &linkSpecs, const FilePath &filePath,
|
void addLinkSpecForAbsoluteFilePath(LinkSpecs &linkSpecs, const FilePath &filePath,
|
||||||
int lineNo, int pos, int len);
|
int lineNo, int pos, int len);
|
||||||
void addLinkSpecForAbsoluteFilePath(LinkSpecs &linkSpecs, const FilePath &filePath,
|
|
||||||
int lineNo, const QRegExp ®ex, int capIndex);
|
|
||||||
void addLinkSpecForAbsoluteFilePath(LinkSpecs &linkSpecs, const FilePath &filePath,
|
void addLinkSpecForAbsoluteFilePath(LinkSpecs &linkSpecs, const FilePath &filePath,
|
||||||
int lineNo, const QRegularExpressionMatch &match,
|
int lineNo, const QRegularExpressionMatch &match,
|
||||||
int capIndex);
|
int capIndex);
|
||||||
|
Reference in New Issue
Block a user