From 37c3ac992f1fc906b577e2b5a5d815da5016b241 Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Thu, 23 Aug 2018 14:17:34 +0900 Subject: [PATCH] Remove Qt temporary files after loading ZynAddSubFX settings --- plugins/zynaddsubfx/ZynAddSubFx.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/zynaddsubfx/ZynAddSubFx.cpp b/plugins/zynaddsubfx/ZynAddSubFx.cpp index adc3375427c..49a97d35eb8 100644 --- a/plugins/zynaddsubfx/ZynAddSubFx.cpp +++ b/plugins/zynaddsubfx/ZynAddSubFx.cpp @@ -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();