Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into fixWarnings2
  • Loading branch information
mtbkeith committed Mar 31, 2017
2 parents 713341f + e433e8c commit 30fc87b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Cloud/AddCloudWizard.cpp
Expand Up @@ -451,7 +451,11 @@ void
AddFinish::initializePage()
{
// clear previous
while(layout->rowCount() > 0) layout->removeRow(0);
while(layout->count() > 0) {
QLayoutItem *item = layout->takeAt(0);
if (item->widget()) delete item->widget();
delete item;
}

// add from wizard settings -- this is what we
// will now create.
Expand Down
1 change: 1 addition & 0 deletions src/Cloud/CloudService.h
Expand Up @@ -37,6 +37,7 @@
#include <QProgressBar>

#include "Context.h"
#include "Settings.h"

// A CloudService is a base class for working with cloud services
// and for historic reasons local file stores too
Expand Down

0 comments on commit 30fc87b

Please sign in to comment.