remove extra copies (#3081)

This commit is contained in:
Zach H 2018-02-06 05:06:51 -05:00 committed by GitHub
parent 4cbec71882
commit fcfb2b12b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 20 deletions

View file

@ -24,11 +24,8 @@ signals:
public slots:
private:
CardDatabaseSettings(QString settingPath, QObject *parent = 0);
explicit CardDatabaseSettings(QString settingPath, QObject *parent = nullptr);
CardDatabaseSettings( const CardDatabaseSettings& /*other*/ );
CardDatabaseSettings( CardDatabaseSettings& /*other*/ );
CardDatabaseSettings( volatile const CardDatabaseSettings& /*other*/ );
CardDatabaseSettings( volatile CardDatabaseSettings& /*other*/ );
};
#endif // CARDDATABASESETTINGS_H

View file

@ -29,11 +29,8 @@ signals:
public slots:
private:
GameFiltersSettings(QString settingPath,QObject *parent = 0);
explicit GameFiltersSettings(QString settingPath,QObject *parent = nullptr);
GameFiltersSettings( const GameFiltersSettings& /*other*/ );
GameFiltersSettings( GameFiltersSettings& /*other*/ );
GameFiltersSettings( volatile const GameFiltersSettings& /*other*/ );
GameFiltersSettings( volatile GameFiltersSettings& /*other*/ );
QString hashGameType(const QString &gameType) const;
};

View file

@ -53,11 +53,8 @@ signals:
public slots:
private:
LayoutsSettings(QString settingPath,QObject *parent = 0);
explicit LayoutsSettings(QString settingPath,QObject *parent = nullptr);
LayoutsSettings( const LayoutsSettings& /*other*/ );
LayoutsSettings( LayoutsSettings& /*other*/ );
LayoutsSettings( volatile const LayoutsSettings& /*other*/ );
LayoutsSettings( volatile LayoutsSettings& /*other*/ );
};
#endif // LAYOUTSSETTINGS_H

View file

@ -19,11 +19,8 @@ signals:
public slots:
private:
MessageSettings(QString settingPath, QObject *parent = 0);
explicit MessageSettings(QString settingPath, QObject *parent = nullptr);
MessageSettings( const MessageSettings& /*other*/ );
MessageSettings( MessageSettings& /*other*/ );
MessageSettings( volatile const MessageSettings& /*other*/ );
MessageSettings( volatile MessageSettings& /*other*/ );
};
#endif // MESSAGESETTINGS_H

View file

@ -47,11 +47,8 @@ signals:
public slots:
private:
ServersSettings(QString settingPath,QObject *parent = 0);
explicit ServersSettings(QString settingPath,QObject *parent = nullptr);
ServersSettings( const ServersSettings& /*other*/ );
ServersSettings( ServersSettings& /*other*/ );
ServersSettings( volatile const ServersSettings& /*other*/ );
ServersSettings( volatile ServersSettings& /*other*/ );
};
#endif // SERVERSSETTINGS_H