diff --git a/src/plugins/debugger/snapshotwindow.h b/src/plugins/debugger/snapshotwindow.h index c3e69622c8b..302f4fd8301 100644 --- a/src/plugins/debugger/snapshotwindow.h +++ b/src/plugins/debugger/snapshotwindow.h @@ -61,7 +61,9 @@ class SnapshotWindow : public BaseWindow public: explicit SnapshotWindow(SnapshotHandler *handler) : BaseWindow(new SnapshotTreeView(handler)) - {} + { + setWindowTitle(tr("Snapshots")); + } }; } // namespace Internal diff --git a/src/plugins/debugger/watchwindow.h b/src/plugins/debugger/watchwindow.h index 3db85c30000..b04f85c3f51 100644 --- a/src/plugins/debugger/watchwindow.h +++ b/src/plugins/debugger/watchwindow.h @@ -89,7 +89,9 @@ class WatchWindow : public BaseWindow public: explicit WatchWindow(WatchTreeView::Type type) : BaseWindow(new WatchTreeView(type)) - {} + { + setWindowTitle(tr("Locals and Expressions")); + } }; } // namespace Internal