Use the string 'array size' as the name for the property holding the array size.

--HG--
branch : gsoc2014-dfighter
This commit is contained in:
dfighter1985 2014-08-16 03:46:52 +02:00
parent 6d074bc618
commit fb5ce7baac

View file

@ -76,11 +76,7 @@ public:
uint size = 0;
arr->getArraySize( size );
std::string name;
arr->getFormName( name, NULL );
QString key = name.c_str();
key = key.mid( 1 );
QString key = QObject::tr( "Array size" );
QtVariantProperty *p = mgr->addProperty( QVariant::Int, key );
p->setValue( size );
m_browser->addProperty( p );
@ -144,6 +140,9 @@ public:
void onArrayValueChanged( QtProperty *p, const QVariant &value )
{
NLGEORGES::CFormElmArray *arr = static_cast< NLGEORGES::CFormElmArray* >( m_currentNode );
std::string formName;
arr->getFormName( formName, NULL );
}