mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[partition] [tracking] [welcome] Missing Q_OBJECT
- These aren't strictly necessary for the code, but they help with translations.
This commit is contained in:
parent
d65e0fb4c8
commit
2eb84e2de1
4 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
class CreateVolumeGroupDialog : public VolumeGroupBaseDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
CreateVolumeGroupDialog( QString& vgName,
|
||||
QVector< const Partition* >& selectedPVs,
|
||||
|
|
|
@ -26,6 +26,7 @@ class LvmDevice;
|
|||
|
||||
class ResizeVolumeGroupDialog : public VolumeGroupBaseDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
using PartitionVector = QVector< const Partition* >;
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ class QSemaphore;
|
|||
|
||||
class TrackingInstallJob : public Calamares::Job
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TrackingInstallJob( const QString& url );
|
||||
~TrackingInstallJob() override;
|
||||
|
|
|
@ -87,6 +87,7 @@ createResultWidgets( QLayout* layout,
|
|||
*/
|
||||
class ResultsListDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
/** @brief Create a dialog for the given @p checkEntries list of requirements.
|
||||
*
|
||||
|
@ -286,3 +287,5 @@ ResultsListWidget::retranslate()
|
|||
.arg( *Calamares::Branding::ProductName ) );
|
||||
}
|
||||
}
|
||||
|
||||
#include "ResultsListWidget.moc"
|
||||
|
|
Loading…
Add table
Reference in a new issue