UI: Fix warning in VisualStudio 2017
When building with VS2017 the compiler shows some warnings which is undesirable. The compiler rightly complains about declarations which hide older ones which are trivially fixed. Finally only POD types should be passed to variadic functions which is why the String should be converted to c_str(). Relying on the current undefined behavior is a bad idea as it can change with compilers and compiler versions. Closes jp9000/obs-studio#902
This commit is contained in:
parent
4361c5bd45
commit
26c28b4502
@ -490,20 +490,20 @@ void AutoUpdateThread::info(const QString &title, const QString &text)
|
||||
Q_ARG(QString, text));
|
||||
}
|
||||
|
||||
int AutoUpdateThread::queryUpdateSlot(bool manualUpdate, const QString &text)
|
||||
int AutoUpdateThread::queryUpdateSlot(bool localManualUpdate, const QString &text)
|
||||
{
|
||||
OBSUpdate updateDlg(App()->GetMainWindow(), manualUpdate, text);
|
||||
OBSUpdate updateDlg(App()->GetMainWindow(), localManualUpdate, text);
|
||||
return updateDlg.exec();
|
||||
}
|
||||
|
||||
int AutoUpdateThread::queryUpdate(bool manualUpdate, const char *text_utf8)
|
||||
int AutoUpdateThread::queryUpdate(bool localManualUpdate, const char *text_utf8)
|
||||
{
|
||||
int ret = OBSUpdate::No;
|
||||
QString text = text_utf8;
|
||||
QMetaObject::invokeMethod(this, "queryUpdateSlot",
|
||||
Qt::BlockingQueuedConnection,
|
||||
Q_RETURN_ARG(int, ret),
|
||||
Q_ARG(bool, manualUpdate),
|
||||
Q_ARG(bool, localManualUpdate),
|
||||
Q_ARG(QString, text));
|
||||
return ret;
|
||||
}
|
||||
@ -536,7 +536,7 @@ try {
|
||||
string text;
|
||||
string error;
|
||||
string signature;
|
||||
CryptProvider provider;
|
||||
CryptProvider localProvider;
|
||||
BYTE manifestHash[BLAKE2_HASH_LENGTH];
|
||||
bool updatesAvailable = false;
|
||||
bool success;
|
||||
@ -579,7 +579,7 @@ try {
|
||||
/* ----------------------------------- *
|
||||
* create signature provider */
|
||||
|
||||
if (!CryptAcquireContext(&provider,
|
||||
if (!CryptAcquireContext(&localProvider,
|
||||
nullptr,
|
||||
MS_ENH_RSA_AES_PROV,
|
||||
PROV_RSA_AES,
|
||||
@ -587,7 +587,7 @@ try {
|
||||
throw strprintf("CryptAcquireContext failed: %lu",
|
||||
GetLastError());
|
||||
|
||||
::provider = provider;
|
||||
provider = localProvider;
|
||||
|
||||
/* ----------------------------------- *
|
||||
* avoid downloading manifest again */
|
||||
@ -638,7 +638,7 @@ try {
|
||||
if (responseCode == 404)
|
||||
return;
|
||||
|
||||
throw strprintf("Failed to fetch manifest file: %s", error);
|
||||
throw strprintf("Failed to fetch manifest file: %s", error.c_str());
|
||||
}
|
||||
|
||||
/* ----------------------------------- *
|
||||
|
Loading…
x
Reference in New Issue
Block a user