From 1cdcb7618f9874852c99a392f3d8eae6104a6f5c Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Sat, 25 Aug 2018 15:29:40 +0900 Subject: [PATCH] Remove Qt temporary files after loading ZynAddSubFX settings (#4551) --- 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();