Remove Qt temporary files after loading ZynAddSubFX settings (#4551)

This commit is contained in:
Hyunjin Song
2018-08-25 15:29:40 +09:00
committed by GitHub
parent 7f541a544e
commit a0cbcb6ec4

View File

@@ -240,7 +240,6 @@ void ZynAddSubFxInstrument::loadSettings( const QDomElement & _this )
doc.appendChild( doc.importNode( data, true ) );
QTemporaryFile tf;
tf.setAutoRemove( false );
if( tf.open() )
{
QByteArray a = doc.toString( 0 ).toUtf8();