~blue-shell/blue-shell/kfilebox

« back to all changes in this revision

Viewing changes to src/installerform.cpp

  • Committer: Eike Hein
  • Date: 2013-06-07 20:58:54 UTC
  • Revision ID: git-v1:e4785797809e0a5e3b98f13abfd9626956c7db82
More auth url notification fixes.

* Don't show the auth url notification in the initial stage of the first-run wizard.
* Handle more daemon output correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
void InstallerForm::runConfiguration()
92
92
{
93
93
    dc = new DropboxClient(this);
 
94
    dc->setShowAuthUrlNotification(false);
94
95
    dc->hideGtkUi(true);
95
96
    dc->start();
96
97
 
105
106
    hide();
106
107
    QDesktopServices::openUrl(dc->getAuthUrl());
107
108
    dc->stop();
 
109
    dc->setShowAuthUrlNotification(true);
108
110
}
109
111
 
110
112
void InstallerForm::runGtkInstaller()
111
113
{
112
114
    dc->stop();
 
115
    dc->setShowAuthUrlNotification(true);
113
116
    dc->hideGtkUi(false);
114
117
    dc->start();
115
118
    hide();