Rebased on master, minor changes
This commit is contained in:
@@ -28,10 +28,10 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <QtCore/QDebug>
|
||||
#include <QtGui/QLayout>
|
||||
#include <QtGui/QLabel>
|
||||
#include <QtXml/QDomDocument>
|
||||
#include <QDebug>
|
||||
#include <QLayout>
|
||||
#include <QLabel>
|
||||
#include <QDomDocument>
|
||||
|
||||
#include "FileDialog.h"
|
||||
#include "gig_player.h"
|
||||
@@ -1081,6 +1081,3 @@ Plugin * PLUGIN_EXPORT lmms_plugin_main( Model *, void * _data )
|
||||
|
||||
|
||||
}
|
||||
|
||||
#include "moc_gig_player.cxx"
|
||||
|
||||
|
||||
@@ -24,10 +24,10 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _GIG_PLAYER_H
|
||||
#define _GIG_PLAYER_H
|
||||
#ifndef GIG_PLAYER_H
|
||||
#define GIG_PLAYER_H
|
||||
|
||||
#include <QtCore/QMutex>
|
||||
#include <QMutex>
|
||||
#include <list>
|
||||
|
||||
#include "Instrument.h"
|
||||
@@ -140,7 +140,7 @@ public:
|
||||
|
||||
virtual Flags flags() const
|
||||
{
|
||||
return IsSingleStreamed | IsMidiBased;
|
||||
return IsSingleStreamed;
|
||||
}
|
||||
|
||||
virtual PluginView * instantiateView( QWidget * _parent );
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include "patches_dialog.h"
|
||||
|
||||
#include <QtGui/QHeaderView>
|
||||
#include <QHeaderView>
|
||||
//#include <QFileInfo>
|
||||
|
||||
|
||||
@@ -75,7 +75,11 @@ patchesDialog::patchesDialog( QWidget *pParent, Qt::WindowFlags wflags )
|
||||
// pHeader->setResizeMode(QHeaderView::Custom);
|
||||
pHeader->setDefaultAlignment(Qt::AlignLeft);
|
||||
// pHeader->setDefaultSectionSize(200);
|
||||
#if QT_VERSION >= 0x050000
|
||||
pHeader->setSectionsMovable(false);
|
||||
#else
|
||||
pHeader->setMovable(false);
|
||||
#endif
|
||||
pHeader->setStretchLastSection(true);
|
||||
|
||||
m_progListView->resizeColumnToContents(0); // Prog.
|
||||
@@ -379,6 +383,3 @@ void patchesDialog::progChanged (QTreeWidgetItem * _curr, QTreeWidgetItem * _pre
|
||||
// Stabilize the form.
|
||||
stabilizeForm();
|
||||
}
|
||||
|
||||
|
||||
#include "moc_patches_dialog.cxx"
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
#include "gig_player.h"
|
||||
|
||||
#include <fluidsynth.h>
|
||||
#include <QtGui/QWidget>
|
||||
#include <QtGui/QLabel>
|
||||
#include <QWidget>
|
||||
#include <QLabel>
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// qsynthPresetForm -- UI wrapper form.
|
||||
|
||||
Reference in New Issue
Block a user