mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-16 00:53:58 -05:00
Removed most of the usages of std::ostringstream in the gui.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5056 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9ef7d08d2b
commit
4cb844c44d
38 changed files with 190 additions and 354 deletions
|
|
@ -28,7 +28,6 @@
|
|||
#include <QTime>
|
||||
#include <QDateTime>
|
||||
|
||||
#include <sstream>
|
||||
#include <list>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
|
@ -109,9 +108,7 @@ void ChannelDetails::loadChannel()
|
|||
|
||||
// Set Channel Popularity
|
||||
{
|
||||
std::ostringstream out;
|
||||
out << ci.pop;
|
||||
ui.popline -> setText(QString::fromStdString(out.str()));
|
||||
ui.popline -> setText(QString::number(ci.pop));
|
||||
}
|
||||
|
||||
// Set Last Channel Post Date
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue