comparison 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
comparison
equal deleted inserted replaced
1037:bf0e5944289b 1038:cc27f35aa75c
93 93
94 QString 94 QString
95 BundleCommand::getName() const 95 BundleCommand::getName() const
96 { 96 {
97 if (m_commands.size() == 1) return m_name; 97 if (m_commands.size() == 1) return m_name;
98 return tr("%1 (%n change(s))", "", m_commands.size()).arg(m_name); 98 return tr("%1 (%n change(s))", "", int(m_commands.size())).arg(m_name);
99 } 99 }
100 100