1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 09:45:21 +03:00

Compilation error when PHONON not present

This commit is contained in:
Andre Bernet 2014-04-09 12:58:48 +02:00
parent ea1e7bdc87
commit 5c4e921899
2 changed files with 5 additions and 2 deletions

View file

@ -49,10 +49,13 @@ void RepeatComboBox::update()
CustomFunctionsPanel::CustomFunctionsPanel(QWidget * parent, ModelData & model, GeneralSettings & generalSettings):
ModelPanel(parent, model, generalSettings),
initialized(false),
initialized(false)
#if defined(PHONON)
,
phononCurrent(-1),
clickObject(NULL),
clickOutput(NULL)
#endif
{
QGridLayout * gridLayout = new QGridLayout(this);