Correct funcArgNamesDifferent

This commit is contained in:
Kurt Hindenburg
2025-03-01 14:34:17 -05:00
parent 84afe7d8d4
commit e62050b035
4 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ public:
};
static int width(uint c, int widthFromTable, enum SyllablePos &syllablePos);
static bool combinesWith(Character prev, uint c);
static bool combinesWith(Character prevChar, uint c);
static bool isHangul(const uint c)
{

View File

@@ -21,7 +21,7 @@ class KONSOLEPRIVATE_EXPORT UrlFilter : public RegExpFilter
public:
UrlFilter();
QSharedPointer<HotSpot> newHotSpot(int beginRow, int beginColumn, int endRow, int endColumn, const QStringList &list) override;
QSharedPointer<HotSpot> newHotSpot(int startLine, int startColumn, int endLine, int endColumn, const QStringList &capturedTexts) override;
public:
static const QRegularExpression FullUrlRegExp;

View File

@@ -28,10 +28,10 @@ public:
void getCells(const int lineNumber, const int startColumn, const int count, Character buffer[]) const override;
bool isWrappedLine(const int lineNumber) const override;
LineProperty getLineProperty(const int lineNumber) const override;
void setLineProperty(const int lineno, LineProperty prop) override;
void setLineProperty(const int lineNumber, LineProperty prop) override;
void addCells(const Character a[], const int count) override;
void addCellsMove(Character a[], const int count) override;
void addCellsMove(Character characters[], const int count) override;
void addLine(const LineProperty lineProperty = LineProperty()) override;
void removeCells() override;

View File

@@ -147,7 +147,7 @@ public:
~ConPtyProcess();
bool
startProcess(const QString &shellPath, const QStringList &arguments, const QString &workingDirectory, QStringList environment, qint16 cols, qint16 rows);
startProcess(const QString &shellPath, const QStringList &arguments, const QString &workingDir, QStringList environment, qint16 cols, qint16 rows);
bool resize(qint16 cols, qint16 rows);
bool kill();
PtyType type();