diff options
author | Friedemann Kleint <[email protected]> | 2022-12-19 14:09:23 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2022-12-22 09:30:08 +0100 |
commit | 1930ac417cc24ed74842e1a6f1c751ce2cfc47d0 (patch) | |
tree | 78387dc7d565b1124a874c13074d929022be69aa /sources/shiboken6/tests/libsample/objectview.h | |
parent | 8cc5d64cf80f918b75366e148c7a951404b2313b (diff) |
Fix coding style of the shiboken tests
- Place star/reference correctly
- Fix include order
- Streamline code, wrap long lines
- Use member initialization and default special methods
Change-Id: I7b7e7d8e8c9562cd932bee8144bc44d6b2dda0a5
Reviewed-by: Shyamnath Premnadh <[email protected]>
Reviewed-by: Adrian Herrmann <[email protected]>
Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/shiboken6/tests/libsample/objectview.h')
-rw-r--r-- | sources/shiboken6/tests/libsample/objectview.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/sources/shiboken6/tests/libsample/objectview.h b/sources/shiboken6/tests/libsample/objectview.h index 1de474ff2..2567deee5 100644 --- a/sources/shiboken6/tests/libsample/objectview.h +++ b/sources/shiboken6/tests/libsample/objectview.h @@ -13,21 +13,19 @@ class ObjectModel; class LIBSAMPLE_API ObjectView : public ObjectType { public: - ObjectView(ObjectModel *model = nullptr, ObjectType *parent = nullptr) - : ObjectType(parent), m_model(model) - {} + explicit ObjectView(ObjectModel *model = nullptr, ObjectType *parent = nullptr) + : ObjectType(parent), m_model(model) {} - inline void setModel(ObjectModel* model) { m_model = model; } - inline ObjectModel* model() const { return m_model; } + inline void setModel(ObjectModel *model) { m_model = model; } + inline ObjectModel *model() const { return m_model; } Str displayModelData(); - void modifyModelData(Str& data); + void modifyModelData(Str &data); - ObjectType* getRawModelData(); + ObjectType *getRawModelData(); private: - ObjectModel* m_model; + ObjectModel *m_model; }; #endif // OBJECTVIEW_H - |