diff options
Diffstat (limited to 'src/sync/syncassistant.cpp')
-rw-r--r-- | src/sync/syncassistant.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sync/syncassistant.cpp b/src/sync/syncassistant.cpp index 8688d7bc..0e51e7b7 100644 --- a/src/sync/syncassistant.cpp +++ b/src/sync/syncassistant.cpp @@ -34,7 +34,7 @@ #include "synchosttypewidget.h" #include "syncftpsettingswidget.h" - +#include "syncgooglesettingswidget.h" SyncAssistant::SyncAssistant(QWidget *parent) : QWizard(parent) @@ -44,5 +44,6 @@ SyncAssistant::SyncAssistant(QWidget *parent) setPage(Page_Data, new SyncDataWidget(this)); setPage(Page_Type, new SyncHostTypeWidget(this)); setPage(Page_FTP_Settings, new SyncFTPSettingsWidget(this)); + setPage(Page_Google_Settings, new SyncGoogleSettingsWidget(this)); setPage(Page_Check, new SyncCheckWidget(this)); } |