change std::stringstream to std::ostringstream

This commit is contained in:
Andrzej Rybczak
2009-02-10 12:23:02 +01:00
parent f9f5149b76
commit 256bb429b5
3 changed files with 3 additions and 3 deletions

View File

@@ -540,7 +540,7 @@ bool Song::operator<(const Song &s) const
string Song::ShowTime(int length)
{
std::stringstream ss;
std::ostringstream ss;
int hours = length/3600;
length -= hours*3600;