Capitalize macro names

Change-Id: I6492d625ede6c4425e5dd4b6f19a327f1931f64c
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
hjk
2014-10-22 14:25:15 +02:00
parent 2a240b8fab
commit 6f570684e0
4 changed files with 8 additions and 8 deletions

View File

@@ -107,9 +107,9 @@ public:
m_iconPath = FileName::fromLatin1(":///DESKTOP///");
m_macroExpander.setDisplayName(tr("Kit"));
m_macroExpander.registerVariable("Kit:id", tr("Kit ID"),
m_macroExpander.registerVariable("Kit:Id", tr("Kit ID"),
[this]() { return m_id.toString(); });
m_macroExpander.registerVariable("Kit:fileSystemName", tr("Kit filesystem-friendly name"),
m_macroExpander.registerVariable("Kit:FileSystemName", tr("Kit filesystem-friendly name"),
[this]() { return m_fileSystemFriendlyName; });
}