mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
virtual methods of QIcuCodec are final
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
6867c6f316
commit
3328cecbba
1 changed files with 5 additions and 5 deletions
|
@ -62,12 +62,12 @@ public:
|
|||
static QList<QByteArray> availableCodecs();
|
||||
static QList<int> availableMibs();
|
||||
|
||||
QString convertToUnicode(const char *, int, ConverterState *) const override;
|
||||
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const override;
|
||||
QString convertToUnicode(const char *, int, ConverterState *) const final;
|
||||
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const final;
|
||||
|
||||
QByteArray name() const override;
|
||||
QList<QByteArray> aliases() const override;
|
||||
int mibEnum() const override;
|
||||
QByteArray name() const final;
|
||||
QList<QByteArray> aliases() const final;
|
||||
int mibEnum() const final;
|
||||
|
||||
private:
|
||||
UConverter *getConverter(QTextCodec::ConverterState *state) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue