diff options
| -rw-r--r-- | src/yuzu/configuration/configure_motion_touch.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_motion_touch.cpp b/src/yuzu/configuration/configure_motion_touch.cpp index eb8eacbf9..9543f086d 100644 --- a/src/yuzu/configuration/configure_motion_touch.cpp +++ b/src/yuzu/configuration/configure_motion_touch.cpp | |||
| @@ -185,8 +185,9 @@ void ConfigureMotionTouch::ConnectEvents() { | |||
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | void ConfigureMotionTouch::OnUDPAddServer() { | 187 | void ConfigureMotionTouch::OnUDPAddServer() { |
| 188 | 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]" | 188 | // Validator for IP address |
| 189 | "[0-9]|[01]?[0-9][0-9]?)$)re")); // a valid ip address | 189 | QRegExp re(QStringLiteral( |
| 190 | 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")); | ||
| 190 | bool ok; | 191 | bool ok; |
| 191 | QString port_text = ui->udp_port->text(); | 192 | QString port_text = ui->udp_port->text(); |
| 192 | QString server_text = ui->udp_server->text(); | 193 | QString server_text = ui->udp_server->text(); |