diff -r f31d1073345e -r ded882439548 QTfrontend/pageoptions.cpp --- a/QTfrontend/pageoptions.cpp Wed Jun 15 23:59:44 2011 +0200 +++ b/QTfrontend/pageoptions.cpp Sat Jun 18 03:14:45 2011 +0200 @@ -239,16 +239,15 @@ CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name")); MiscLayout->addWidget(CBNameWithDate, 4, 0, 1, 2); -#ifdef SPARKLE_ENABLED - CBAutoUpdate = new QCheckBox(groupMisc); - CBAutoUpdate->setText(QCheckBox::tr("Check for updates at startup")); - MiscLayout->addWidget(CBAutoUpdate, 5, 0, 1, 2); -#endif -#ifndef __APPLE__ BtnAssociateFiles = new QPushButton(groupMisc); BtnAssociateFiles->setText(QPushButton::tr("Associate file extensions")); BtnAssociateFiles->setEnabled(!custom_data && !custom_config); MiscLayout->addWidget(BtnAssociateFiles, 5, 0, 1, 2); + +#ifdef __APPLE__ && SPARKLE_ENABLED + CBAutoUpdate = new QCheckBox(groupMisc); + CBAutoUpdate->setText(QCheckBox::tr("Check for updates at startup")); + MiscLayout->addWidget(CBAutoUpdate, 6, 0, 1, 3); #endif gbTBLayout->addWidget(groupMisc, 2, 0); }