mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 11:05:33 +08:00
Fixed clazy warnings: missing Q_OBJECT.
This commit is contained in:
@@ -63,6 +63,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CConfigSimulatorWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -66,6 +66,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CCopyModelsFromOtherSwiftVersionsWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -25,6 +25,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CDbModelKeyCompleter : public QLineEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Ctor
|
||||
CDbModelKeyCompleter(QWidget *parent = nullptr);
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -93,6 +93,8 @@ namespace BlackGui
|
||||
//! Wizard page for CFirstModelSetComponent
|
||||
class CFirstModelSetWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -54,6 +54,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CInitialDataLoadWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -27,6 +27,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CInstallSimulatorSpecificWizardPage : public COverlayMessagesWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using COverlayMessagesWizardPage::COverlayMessagesWizardPage;
|
||||
|
||||
@@ -106,6 +106,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CInstallXSwiftBusWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -62,6 +62,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CLegalInfoWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -73,6 +73,8 @@ namespace BlackGui
|
||||
*/
|
||||
class CConfigHotkeyWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
//! Constructors
|
||||
using QWizardPage::QWizardPage;
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user