Skip to content

Commit

Permalink
Context enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Feb 8, 2014
1 parent 4d1951e commit 92d53a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/context.cpp
Expand Up @@ -504,6 +504,10 @@ class TranslateContext::Private : public PropertyMapper
{ {
return theTranslator->trCompoundList(); return theTranslator->trCompoundList();
} }
TemplateVariant classListDescription() const
{
return theTranslator->trCompoundListDescription();
}
TemplateVariant classIndex() const TemplateVariant classIndex() const
{ {
return theTranslator->trCompoundIndex(); return theTranslator->trCompoundIndex();
Expand Down Expand Up @@ -727,6 +731,8 @@ class TranslateContext::Private : public PropertyMapper
addProperty("classes", this,&Private::classes); addProperty("classes", this,&Private::classes);
//%% string classList //%% string classList
addProperty("classList", this,&Private::classList); addProperty("classList", this,&Private::classList);
//%% string classListDescription
addProperty("classListDescription", this,&Private::classListDescription);
//%% string classIndex //%% string classIndex
addProperty("classIndex", this,&Private::classIndex); addProperty("classIndex", this,&Private::classIndex);
//%% string classHierarchy //%% string classHierarchy
Expand Down

0 comments on commit 92d53a4

Please sign in to comment.