[partition] [tracking] [welcome] Missing Q_OBJECT

- These aren't strictly necessary for the code, but they
  help with translations.
This commit is contained in:
Adriaan de Groot 2020-03-19 00:20:20 +01:00
parent d65e0fb4c8
commit 2eb84e2de1
4 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,7 @@
class CreateVolumeGroupDialog : public VolumeGroupBaseDialog
{
Q_OBJECT
public:
CreateVolumeGroupDialog( QString& vgName,
QVector< const Partition* >& selectedPVs,

View File

@ -26,6 +26,7 @@ class LvmDevice;
class ResizeVolumeGroupDialog : public VolumeGroupBaseDialog
{
Q_OBJECT
public:
using PartitionVector = QVector< const Partition* >;

View File

@ -25,6 +25,7 @@ class QSemaphore;
class TrackingInstallJob : public Calamares::Job
{
Q_OBJECT
public:
TrackingInstallJob( const QString& url );
~TrackingInstallJob() override;

View File

@ -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"