mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
Add const to class function
This commit is contained in:
parent
230949ee3b
commit
f907328bdc
2 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ void WebApplication::sendWebUIFile()
|
||||||
sendFile(localPath);
|
sendFile(localPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebApplication::translateDocument(QString &data)
|
void WebApplication::translateDocument(QString &data) const
|
||||||
{
|
{
|
||||||
const QRegularExpression regex("QBT_TR\\((([^\\)]|\\)(?!QBT_TR))+)\\)QBT_TR\\[CONTEXT=([a-zA-Z_][a-zA-Z0-9_]*)\\]");
|
const QRegularExpression regex("QBT_TR\\((([^\\)]|\\)(?!QBT_TR))+)\\)QBT_TR\\[CONTEXT=([a-zA-Z_][a-zA-Z0-9_]*)\\]");
|
||||||
|
|
||||||
|
|
|
@ -105,7 +105,7 @@ private:
|
||||||
void sendFile(const QString &path);
|
void sendFile(const QString &path);
|
||||||
void sendWebUIFile();
|
void sendWebUIFile();
|
||||||
|
|
||||||
void translateDocument(QString &data);
|
void translateDocument(QString &data) const;
|
||||||
|
|
||||||
// Session management
|
// Session management
|
||||||
QString generateSid() const;
|
QString generateSid() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue