QTableGenerator: replace a call to a member function with direct element access

Saves one copy of a vector.

Change-Id: I3a14c46e306c3d44a64c6e0d8cd2f120b2c208d7
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
Marc Mutz 2014-10-09 22:42:50 +02:00
parent 8304c8087d
commit df2afcad2f

View File

@ -442,7 +442,7 @@ void TableGenerator::parseKeySequence(char *line)
void TableGenerator::printComposeTable() const
{
#ifdef DEBUG_GENERATOR
if (composeTable().isEmpty())
if (m_composeTable.isEmpty())
return;
QString output;