mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 01:15:38 -04:00
PartitionPreview is now PartitionBarsView.
This commit is contained in:
parent
3beebf4137
commit
b65fe87503
10 changed files with 43 additions and 43 deletions
|
@ -28,7 +28,7 @@
|
|||
#include "gui/ChoicePage.h"
|
||||
#include "gui/AlongsidePage.h"
|
||||
#include "gui/PartitionPage.h"
|
||||
#include "gui/PartitionPreview.h"
|
||||
#include "gui/PartitionBarsView.h"
|
||||
|
||||
#include "CalamaresVersion.h"
|
||||
#include "utils/CalamaresUtilsGui.h"
|
||||
|
@ -209,15 +209,15 @@ PartitionViewStep::createSummaryWidget() const
|
|||
}
|
||||
formLayout->addRow( diskInfoLabel );
|
||||
|
||||
PartitionPreview* preview;
|
||||
PartitionBarsView* preview;
|
||||
|
||||
preview = new PartitionPreview;
|
||||
preview = new PartitionBarsView;
|
||||
preview->setLabelsVisible( true );
|
||||
preview->setModel( info.partitionModelBefore );
|
||||
info.partitionModelBefore->setParent( widget );
|
||||
formLayout->addRow( tr( "Before:" ), preview );
|
||||
|
||||
preview = new PartitionPreview;
|
||||
preview = new PartitionBarsView;
|
||||
preview->setLabelsVisible( true );
|
||||
preview->setModel( info.partitionModelAfter );
|
||||
info.partitionModelAfter->setParent( widget );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue