This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "http.h" | |
#include "httpexec.h" | |
Http::Http(QObject *parent) : QObject(parent) | |
{ | |
m_thread = NULL; | |
m_reply = NULL; | |
} | |
Http::~Http() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With useFieldArray hook, remove function works fine in Debug mode, but not in Release mode. | |
In Release mode, remove(one_index) function removes all items appended, but keep items from defaultValues. |