[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r2791: Appease Panther's douchieness. (vidalia/trunk/src/tools/ts2po)
Author: edmanm
Date: 2008-06-21 22:15:50 -0400 (Sat, 21 Jun 2008)
New Revision: 2791
Modified:
vidalia/trunk/src/tools/ts2po/ts2po.cpp
Log:
Appease Panther's douchieness.
Modified: vidalia/trunk/src/tools/ts2po/ts2po.cpp
===================================================================
--- vidalia/trunk/src/tools/ts2po/ts2po.cpp 2008-06-22 00:10:47 UTC (rev 2790)
+++ vidalia/trunk/src/tools/ts2po/ts2po.cpp 2008-06-22 02:15:50 UTC (rev 2791)
@@ -223,10 +223,10 @@
poFile.close();
if (!quiet) {
- QTextStream(stdout) << QString("Converted %1 strings from %2 to %3.\n")
- .arg(n_strings)
- .arg(infile)
- .arg(outfile);
+ QTextStream results(stdout);
+ results << QString("Converted %1 strings from %2 to %3.\n").arg(n_strings)
+ .arg(infile)
+ .arg(outfile);
}
return 0;
}