Fix dumb things that aren't necessarily lethal but are eyesores
This commit is contained in:
parent
2e17b848b1
commit
3d22c1ed4e
@ -732,7 +732,7 @@ bool Client::CheckUpdate(http::Request *updateRequest, bool checkSession)
|
||||
}
|
||||
else if(data.size())
|
||||
{
|
||||
std::istringstream dataStream(data.c_str());
|
||||
std::istringstream dataStream(data);
|
||||
|
||||
try
|
||||
{
|
||||
@ -912,14 +912,6 @@ void Client::WritePrefs()
|
||||
}
|
||||
|
||||
void Client::Shutdown()
|
||||
{
|
||||
http::RequestManager::Ref().Shutdown();
|
||||
|
||||
//Save config
|
||||
WritePrefs();
|
||||
}
|
||||
|
||||
Client::~Client()
|
||||
{
|
||||
if (versionCheckRequest)
|
||||
{
|
||||
@ -929,6 +921,15 @@ Client::~Client()
|
||||
{
|
||||
alternateVersionCheckRequest->Cancel();
|
||||
}
|
||||
|
||||
http::RequestManager::Ref().Shutdown();
|
||||
|
||||
//Save config
|
||||
WritePrefs();
|
||||
}
|
||||
|
||||
Client::~Client()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@ -1254,7 +1255,7 @@ LoginStatus Client::Login(ByteString username, ByteString password, User & user)
|
||||
{
|
||||
try
|
||||
{
|
||||
std::istringstream dataStream(data.c_str());
|
||||
std::istringstream dataStream(data);
|
||||
Json::Value objDocument;
|
||||
dataStream >> objDocument;
|
||||
|
||||
|
@ -199,7 +199,7 @@ bool PreviewModel::ParseSaveInfo(ByteString &saveInfoResponse)
|
||||
|
||||
try
|
||||
{
|
||||
std::istringstream dataStream(saveInfoResponse.c_str());
|
||||
std::istringstream dataStream(saveInfoResponse);
|
||||
Json::Value objDocument;
|
||||
dataStream >> objDocument;
|
||||
|
||||
@ -257,7 +257,7 @@ bool PreviewModel::ParseComments(ByteString &commentsResponse)
|
||||
saveComments = new std::vector<SaveComment*>();
|
||||
try
|
||||
{
|
||||
std::istringstream dataStream(commentsResponse.c_str());
|
||||
std::istringstream dataStream(commentsResponse);
|
||||
Json::Value commentsArray;
|
||||
dataStream >> commentsArray;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user