mirror of
https://github.com/KDE/konsole.git
synced 2025-12-23 23:38:08 -05:00
Correct funcArgNamesDifferent
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user