From ca8316ac54f4d4a9a88a9f273d93880ab82f1ae7 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Wed, 26 Nov 2014 15:30:35 -0500 Subject: [PATCH] Remove note about reusing the render widget. This is actually not possible due to how Qt manages child widgets... --- Source/Core/DolphinQt/MainWindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/MainWindow.h b/Source/Core/DolphinQt/MainWindow.h index e8fa97c8ba..7b17c5eaa4 100644 --- a/Source/Core/DolphinQt/MainWindow.h +++ b/Source/Core/DolphinQt/MainWindow.h @@ -65,7 +65,7 @@ private: QString ShowFileDialog(); void DoStartPause(); - std::unique_ptr m_render_widget; // TODO: just create this once and reuse it + std::unique_ptr m_render_widget; bool m_isStopping = false; };