diff options
| author | Arthur LAURENT <[email protected]> | 2022-06-10 16:44:38 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2022-06-10 16:44:38 +0200 |
| commit | 400d06537eb5271264a7d7e47b7433da4e854d42 (patch) | |
| tree | 6e61db1423e45a813b51468c11a6cd0edac4e6bb /tests | |
| parent | 209fb5bfbe329325f74913471fdf0ff784f792d7 (diff) | |
Apply PR suggestions
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/projects/qt/quickplugin/src/Foo.cpp | 2 | ||||
| -rw-r--r-- | tests/projects/qt/quickplugin/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/qt/quickplugin/src/Foo.cpp b/tests/projects/qt/quickplugin/src/Foo.cpp index 83aceec6a..d4065cb52 100644 --- a/tests/projects/qt/quickplugin/src/Foo.cpp +++ b/tests/projects/qt/quickplugin/src/Foo.cpp @@ -8,7 +8,7 @@ int Foo::bar() const noexcept { } void Foo::setBar(int bar) noexcept { - if(bar == m_bar) return; + if (bar == m_bar) return; m_bar = bar; diff --git a/tests/projects/qt/quickplugin/xmake.lua b/tests/projects/qt/quickplugin/xmake.lua index 97cade54a..8b20240e0 100644 --- a/tests/projects/qt/quickplugin/xmake.lua +++ b/tests/projects/qt/quickplugin/xmake.lua @@ -9,4 +9,4 @@ target("demo") add_cxxflags("/permissive-") end - set_values("qml.plugin.importname", "My.Plugin")
\ No newline at end of file + set_values("qt.qmlplugin.import_name", "My.Plugin")
\ No newline at end of file |
