diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/debugger/wait_tree.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index f9c18ede4..6b3a757e0 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp | |||
| @@ -75,7 +75,7 @@ std::vector<std::unique_ptr<WaitTreeThread>> WaitTreeItem::MakeThreadItemList() | |||
| 75 | return item_list; | 75 | return item_list; |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | WaitTreeText::WaitTreeText(const QString& t) : text(t) {} | 78 | WaitTreeText::WaitTreeText(QString t) : text(std::move(t)) {} |
| 79 | WaitTreeText::~WaitTreeText() = default; | 79 | WaitTreeText::~WaitTreeText() = default; |
| 80 | 80 | ||
| 81 | QString WaitTreeText::GetText() const { | 81 | QString WaitTreeText::GetText() const { |
diff --git a/src/yuzu/debugger/wait_tree.h b/src/yuzu/debugger/wait_tree.h index 492fb6ac9..e639ef412 100644 --- a/src/yuzu/debugger/wait_tree.h +++ b/src/yuzu/debugger/wait_tree.h | |||
| @@ -52,7 +52,7 @@ private: | |||
| 52 | class WaitTreeText : public WaitTreeItem { | 52 | class WaitTreeText : public WaitTreeItem { |
| 53 | Q_OBJECT | 53 | Q_OBJECT |
| 54 | public: | 54 | public: |
| 55 | explicit WaitTreeText(const QString& text); | 55 | explicit WaitTreeText(QString text); |
| 56 | ~WaitTreeText() override; | 56 | ~WaitTreeText() override; |
| 57 | 57 | ||
| 58 | QString GetText() const override; | 58 | QString GetText() const override; |