mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 18:04:59 -05:00
13 lines
193 B
C++
13 lines
193 B
C++
#include "text-helpers.hpp"
|
|
|
|
#include <QRegularExpression>
|
|
|
|
namespace advss {
|
|
|
|
QString EscapeForRegex(const QString &input)
|
|
{
|
|
return QRegularExpression::escape(input);
|
|
}
|
|
|
|
} // namespace advss
|