Results 1 to 2 of 2

Thread: Creating QString from std::sstream

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Feb 2006
    Location
    Romania
    Posts
    2,744
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanks
    8
    Thanked 541 Times in 521 Posts

    Default Re: What is the fastest way to draw a circle ?

    The solution:
    Qt Code:
    1. stringstream ss;
    2. ss << "FunctionCall" <<endl;
    3. QString QStr = QString::fromStdString(ss.str());
    4. insertParagraph(QStr,0);
    To copy to clipboard, switch view to plain text mode 

    You really should have created a new thread. This is not the appropriate place to start your thread.

    Regards

  2. The following user says thank you to marcel for this useful post:

    TheIndependentAquarius (18th December 2012)

Similar Threads

  1. QString static callback function from CURL
    By tpf80 in forum Qt Programming
    Replies: 12
    Last Post: 16th May 2007, 20:47
  2. Convert from iso-8859-1 to... Something else :-)
    By Nyphel in forum Qt Programming
    Replies: 4
    Last Post: 7th March 2007, 17:59
  3. Converting QString to unsigned char
    By salston in forum Qt Programming
    Replies: 3
    Last Post: 24th April 2006, 22:10
  4. Replies: 2
    Last Post: 10th February 2006, 12:57
  5. [SOLVED] Widget plugin ... how to ?
    By yellowmat in forum Newbie
    Replies: 10
    Last Post: 29th January 2006, 20:41

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.