Merge pull request #2108 from LMMS/travis-qt5

Travis QT5
This commit is contained in:
Lukas W
2015-06-21 16:22:27 +02:00
19 changed files with 77 additions and 29 deletions

View File

@@ -1060,7 +1060,7 @@ void GigInstrumentView::showFileDialog()
QStringList types;
types << tr( "GIG Files (*.gig)" );
ofd.setFilters( types );
ofd.setNameFilters( types );
QString dir;
if( k->m_filename != "" )

View File

@@ -469,7 +469,11 @@ int lb302Synth::process(sampleFrame *outbuf, const int size)
float samp;
// Hold on to the current VCF, and use it throughout this period
#if QT_VERSION >= 0x050000
lb302Filter *filter = vcf.loadAcquire();
#else
lb302Filter *filter = vcf;
#endif
if( release_frame == 0 || ! m_playingNote )
{