diff options
author | comex <comexk@gmail.com> | 2020-12-07 01:24:23 +0100 |
---|---|---|
committer | comex <comexk@gmail.com> | 2020-12-07 01:25:48 +0100 |
commit | 2dce2be1387fea3e4bf85f98b09f45d7d682e591 (patch) | |
tree | beb8ec2a367f3278f0abc26c5f88925c2779ddb7 | |
parent | Merge pull request #5155 from comex/xx-default (diff) | |
download | yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar.gz yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar.bz2 yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar.lz yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar.xz yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.tar.zst yuzu-2dce2be1387fea3e4bf85f98b09f45d7d682e591.zip |
-rw-r--r-- | src/yuzu/configuration/configure_motion_touch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_motion_touch.cpp b/src/yuzu/configuration/configure_motion_touch.cpp index 2afac591a..c2a7113da 100644 --- a/src/yuzu/configuration/configure_motion_touch.cpp +++ b/src/yuzu/configuration/configure_motion_touch.cpp @@ -183,8 +183,8 @@ void ConfigureMotionTouch::ConnectEvents() { } void ConfigureMotionTouch::OnUDPAddServer() { - QRegExp re(tr("^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[" - "0-9][0-9]?)$")); // a valid ip address + QRegExp re(tr(R"re(^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4]" + "[0-9]|[01]?[0-9][0-9]?)$)re")); // a valid ip address bool ok; QString port_text = ui->udp_port->text(); QString server_text = ui->udp_server->text(); |