fix: fix warnings reported by LGTM.com
This commit is contained in:
parent
03e454b71d
commit
9ec260619b
@ -79,6 +79,8 @@ QString AccountTask::getStateMessage() const
|
||||
bool AccountTask::changeState(AccountTaskState newState, QString reason)
|
||||
{
|
||||
m_taskState = newState;
|
||||
// FIXME: virtual method invoked in constructor.
|
||||
// We want that behavior, but maybe make it less weird?
|
||||
setStatus(getStateMessage());
|
||||
switch(newState) {
|
||||
case AccountTaskState::STATE_CREATED: {
|
||||
|
@ -59,7 +59,7 @@ class FlameAPI : public NetworkModAPI {
|
||||
};
|
||||
|
||||
public:
|
||||
static auto getMappedModLoader(const ModLoaderTypes loaders) -> const int
|
||||
static auto getMappedModLoader(const ModLoaderTypes loaders) -> int
|
||||
{
|
||||
// https://docs.curseforge.com/?http#tocS_ModLoaderType
|
||||
if (loaders & Forge)
|
||||
|
@ -329,6 +329,11 @@ POTranslator::POTranslator(const QString& filename, QObject* parent) : QTranslat
|
||||
d->reload();
|
||||
}
|
||||
|
||||
POTranslator::~POTranslator()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
QString POTranslator::translate(const char* context, const char* sourceText, const char* disambiguation, int n) const
|
||||
{
|
||||
if(disambiguation)
|
||||
|
@ -9,6 +9,7 @@ class POTranslator : public QTranslator
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit POTranslator(const QString& filename, QObject * parent = nullptr);
|
||||
virtual ~POTranslator();
|
||||
QString translate(const char * context, const char * sourceText, const char * disambiguation, int n) const override;
|
||||
bool isEmpty() const override;
|
||||
private:
|
||||
|
@ -162,16 +162,16 @@ bool LocalPeer::sendMessage(const QByteArray &message, int timeout)
|
||||
|
||||
QLocalSocket socket;
|
||||
bool connOk = false;
|
||||
for(int i = 0; i < 2; i++) {
|
||||
int tries = 2;
|
||||
for(int i = 0; i < tries; i++) {
|
||||
// Try twice, in case the other instance is just starting up
|
||||
socket.connectToServer(socketName);
|
||||
connOk = socket.waitForConnected(timeout/2);
|
||||
if (connOk || i)
|
||||
if (!connOk && i < (tries - 1))
|
||||
{
|
||||
break;
|
||||
}
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(250));
|
||||
}
|
||||
}
|
||||
if (!connOk)
|
||||
{
|
||||
return false;
|
||||
|
@ -79,7 +79,7 @@ element_value *element_value::readElementValue(util::membuffer &input,
|
||||
}
|
||||
return new element_value_array(ARRAY, vals, pool);
|
||||
default:
|
||||
throw new java::classfile_exception();
|
||||
throw java::classfile_exception();
|
||||
}
|
||||
}
|
||||
}
|
@ -17,7 +17,7 @@ public:
|
||||
is_synthetic = false;
|
||||
read_be(magic);
|
||||
if (magic != 0xCAFEBABE)
|
||||
throw new classfile_exception();
|
||||
throw classfile_exception();
|
||||
read_be(minor_version);
|
||||
read_be(major_version);
|
||||
constants.load(*this);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include "errors.h"
|
||||
#include "membuffer.h"
|
||||
#include <sstream>
|
||||
|
||||
namespace java
|
||||
@ -90,7 +91,7 @@ public:
|
||||
break;
|
||||
default:
|
||||
// invalid constant type!
|
||||
throw new classfile_exception();
|
||||
throw classfile_exception();
|
||||
}
|
||||
}
|
||||
constant(int)
|
||||
@ -210,7 +211,7 @@ public:
|
||||
{
|
||||
if (constant_index == 0 || constant_index > constants.size())
|
||||
{
|
||||
throw new classfile_exception();
|
||||
throw classfile_exception();
|
||||
}
|
||||
return constants[constant_index - 1];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user