Fixed clazy warnings: missing Q_OBJECT.

This commit is contained in:
Mat Sutcliffe
2018-12-17 16:42:05 +00:00
parent 333ea1b8df
commit e40af8132c
79 changed files with 156 additions and 6 deletions

View File

@@ -63,6 +63,8 @@ namespace BlackGui
*/
class CConfigSimulatorWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -66,6 +66,8 @@ namespace BlackGui
*/
class CCopyModelsFromOtherSwiftVersionsWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -354,6 +354,7 @@ namespace BlackGui
//! The menu for loading and handling VPilot rules for mapping tasks
//! \note This is a specific menu for that very component
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CMappingVPilotMenu : public Menus::IMenuDelegate
{
public:
@@ -377,6 +378,7 @@ namespace BlackGui
//! -# toggle stash auto filtering
//! -# show changed attributes
//! \note This is a specific menu for the CDbMappingComponent component
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CStashToolsMenu : public Menus::IMenuDelegate
{
public:
@@ -399,6 +401,7 @@ namespace BlackGui
};
//! Menu for own model sets
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class COwnModelSetMenu : public Menus::IMenuDelegate
{
public:
@@ -418,6 +421,7 @@ namespace BlackGui
};
//! Menu for removed models
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CRemovedModelsMenu : public Menus::IMenuDelegate
{
public:
@@ -437,6 +441,7 @@ namespace BlackGui
};
//! Apply DB data to selected models
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CApplyDbDataMenu : public Menus::IMenuDelegate
{
public:
@@ -457,6 +462,7 @@ namespace BlackGui
//! Merge with vPilot data
//! \deprecated vPilot menus will be removed in the future
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CMergeWithVPilotMenu : public Menus::IMenuDelegate
{
public:

View File

@@ -25,6 +25,8 @@ namespace BlackGui
*/
class CDbModelKeyCompleter : public QLineEdit
{
Q_OBJECT
public:
//! Ctor
CDbModelKeyCompleter(QWidget *parent = nullptr);

View File

@@ -175,6 +175,7 @@ namespace BlackGui
//! The menu for loading and handling own models for mapping tasks
//! \note This is specific for that very component
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CLoadModelsMenu : public Menus::IMenuDelegate
{
public:

View File

@@ -191,6 +191,7 @@ namespace BlackGui
//! The menu for loading models from cache or create a new model set
//! \note This is specific for that very model set component
//! \fixme MS 2018-12 Move to namespace scope and add Q_OBJECT
class CLoadModelSetMenu : public Menus::IMenuDelegate
{
public:

View File

@@ -93,6 +93,8 @@ namespace BlackGui
//! Wizard page for CFirstModelSetComponent
class CFirstModelSetWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -54,6 +54,8 @@ namespace BlackGui
*/
class CInitialDataLoadWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -27,6 +27,8 @@ namespace BlackGui
*/
class CInstallSimulatorSpecificWizardPage : public COverlayMessagesWizardPage
{
Q_OBJECT
public:
//! Constructors
using COverlayMessagesWizardPage::COverlayMessagesWizardPage;

View File

@@ -106,6 +106,8 @@ namespace BlackGui
*/
class CInstallXSwiftBusWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -62,6 +62,8 @@ namespace BlackGui
*/
class CLegalInfoWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -73,6 +73,8 @@ namespace BlackGui
*/
class CConfigHotkeyWizardPage : public QWizardPage
{
Q_OBJECT
public:
//! Constructors
using QWizardPage::QWizardPage;

View File

@@ -83,6 +83,7 @@ namespace BlackGui
void deferredUpdate();
//! Custom menu for the log component
//! \fixme Move to namespace scope and add Q_OBJECT
class CMessageMenu : public Menus::IMenuDelegate
{
public: