[Branch,~glmark2-dev/glmark2/trunk] Rev 166: Scene: Don't include a tr...

My dashboard
Submitter alexandros.frantzis@linaro.org
Subject [Branch,~glmark2-dev/glmark2/trunk] Rev 166: Scene: Don't include a trailing space in the scene information string.
Date Nov. 11, 2011, 11:12 a.m.
List thread <20111111111212.23901.91023.launchpad@ackee.canonical.com>
Project glmark2
State Accepted
Last updated Nov. 11, 2011, 11:12 a.m.
Headers show

Comments

noreply@launchpad.net - Nov. 11, 2011, 11:12 a.m.
------------------------------------------------------------
revno: 166
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
branch nick: trunk
timestamp: Fri 2011-11-11 12:48:24 +0200
message:
  Scene: Don't include a trailing space in the scene information string.
modified:
  src/scene.cpp


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription

Patch

=== modified file 'src/scene.cpp'
--- src/scene.cpp	2011-11-08 13:57:38 +0000
+++ src/scene.cpp	2011-11-11 10:48:24 +0000
@@ -101,7 +101,7 @@ 
 {
     stringstream ss;
 
-    ss << "[" << name_ << "] " << Scene::construct_title(title) << " ";
+    ss << "[" << name_ << "] " << Scene::construct_title(title);
 
     return ss.str();
 }