Browse Source
Merge pull request #5322 from Morph1984/resolve-c4062-msvc
general: Resolve C4062 warnings on MSVC
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
0 deletions
-
src/yuzu/configuration/configure_motion_touch.cpp
-
src/yuzu/util/url_request_interceptor.cpp
|
|
|
@ -51,6 +51,8 @@ CalibrationConfigurationDialog::CalibrationConfigurationDialog(QWidget* parent, |
|
|
|
case CalibrationConfigurationJob::Status::Completed: |
|
|
|
text = tr("Configuration completed!"); |
|
|
|
break; |
|
|
|
default: |
|
|
|
break; |
|
|
|
} |
|
|
|
QMetaObject::invokeMethod(this, "UpdateLabelText", Q_ARG(QString, text)); |
|
|
|
if (status == CalibrationConfigurationJob::Status::Completed) { |
|
|
|
|
|
|
|
@ -22,6 +22,8 @@ void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& info) { |
|
|
|
case QWebEngineUrlRequestInfo::ResourceTypeXhr: |
|
|
|
emit FrameChanged(); |
|
|
|
break; |
|
|
|
default: |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|