From patchwork Fri Nov 11 11:12:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 5077 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 2296923EF6 for ; Fri, 11 Nov 2011 11:12:16 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 17AEFA1802D for ; Fri, 11 Nov 2011 11:12:16 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so5555625faa.11 for ; Fri, 11 Nov 2011 03:12:16 -0800 (PST) Received: by 10.152.162.10 with SMTP id xw10mr6459652lab.12.1321009935927; Fri, 11 Nov 2011 03:12:15 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.40.7 with SMTP id t7cs43789lak; Fri, 11 Nov 2011 03:12:15 -0800 (PST) Received: by 10.227.202.149 with SMTP id fe21mr7441384wbb.15.1321009933478; Fri, 11 Nov 2011 03:12:13 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id fd18si6277888wbb.8.2011.11.11.03.12.13 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Nov 2011 03:12:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1ROp1o-0006YI-VM for ; Fri, 11 Nov 2011 11:12:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id E4EEEE032C for ; Fri, 11 Nov 2011 11:12:12 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~glmark2-dev/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 166 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 166: Scene: Don't include a trailing space in the scene information string. Message-Id: <20111111111212.23901.91023.launchpad@ackee.canonical.com> Date: Fri, 11 Nov 2011 11:12:12 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14277"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 1dcaced3f71ca7d89dd738c0c35b397bf774eab5 ------------------------------------------------------------ revno: 166 committer: Alexandros Frantzis 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 === 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(); }