#include "account.h"
+#ifdef Q_OS_MAC
+#include "settingsdialogmac.h"
+#endif
+
namespace OCC {
static const char progressBarStyleC[] =
if (QSystemTrayIcon::isSystemTrayAvailable()) {
topLevelWidget()->close();
}
+#ifdef Q_OS_MAC
+ qDebug() << parent() << topLevelWidget();
+ SettingsDialogMac *sd = qobject_cast<SettingsDialogMac*>(topLevelWidget());
+
+ if (sd) {
+ sd->showActivityPage();
+ } else {
+ qFatal("nope");
+ }
+#endif
OwncloudSetupWizard::runWizard(qApp, SLOT(slotownCloudWizardDone(int)), 0);
}