mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Use \n instead of ; as a separator.
This commit is contained in:
parent
b9e12caaef
commit
3dc9d07f59
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ void ConstStrArrEditDialog::setValue( const QString &value )
|
||||||
if( value.isEmpty() )
|
if( value.isEmpty() )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QStringList l = value.split( ';' );
|
QStringList l = value.split( '\n' );
|
||||||
|
|
||||||
QStringListIterator itr( l );
|
QStringListIterator itr( l );
|
||||||
while( itr.hasNext() )
|
while( itr.hasNext() )
|
||||||
|
@ -67,7 +67,7 @@ QString ConstStrArrEditDialog::getValue() const
|
||||||
value += item->text();
|
value += item->text();
|
||||||
|
|
||||||
if( i < ( listWidget->count() - 1 ) )
|
if( i < ( listWidget->count() - 1 ) )
|
||||||
value += ';';
|
value += '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
|
|
Loading…
Reference in a new issue