diff base/Command.cpp @ 1038:cc27f35aa75c cxx11

Introducing the signed 64-bit frame index type, and fixing build failures from inclusion of -Wconversion with -Werror. Not finished yet.
author Chris Cannam
date Tue, 03 Mar 2015 15:18:24 +0000
parents 6a96bff0bd59
children 48e9f538e6e9
line wrap: on
line diff
--- a/base/Command.cpp	Tue Mar 03 09:33:59 2015 +0000
+++ b/base/Command.cpp	Tue Mar 03 15:18:24 2015 +0000
@@ -95,6 +95,6 @@
 BundleCommand::getName() const
 {
     if (m_commands.size() == 1) return m_name;
-    return tr("%1 (%n change(s))", "", m_commands.size()).arg(m_name);
+    return tr("%1 (%n change(s))", "", int(m_commands.size())).arg(m_name);
 }