From eced3a6978a4b0c86d2a3022eba95c126d917165 Mon Sep 17 00:00:00 2001 From: Brian Ferguson Date: Tue, 11 Feb 2014 12:25:54 -0700 Subject: [PATCH] Tweaks --- Library/DialogAbout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/DialogAbout.cpp b/Library/DialogAbout.cpp index 4e179dcf..4419364a 100644 --- a/Library/DialogAbout.cpp +++ b/Library/DialogAbout.cpp @@ -1243,11 +1243,11 @@ void DialogAbout::TabVersion::Initialize() bool is64Bit = false; if (Platform::GetPlatformBit(is64Bit)) { - text.append(is64Bit ? L" (64-bit)" : L" (32-bit)"); + text += (is64Bit) ? L" (64-bit)" : L" (32-bit)"; } else { - text.append(L" (???-bit)"); + text += L" (???-bit)"; } SetWindowText(item, text.c_str());