Hi
inside while loop(infinite loop), i am appending some text to text
browser.But text is not happening and application also hangup
code
QString data;
while(1)
{
data = //get from some where
ui->textBrowser->append(data) // Data is not appending in browser
}
Thanks
Yuvraj