forked from qt-creator/qt-creator
DebuggerWindows: Set the window title
Regression introduced by 47fea30557
Change-Id: Ic007ac00e86f26bd3959b3bea0831b4d2cf41182
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -61,7 +61,9 @@ class SnapshotWindow : public BaseWindow
|
|||||||
public:
|
public:
|
||||||
explicit SnapshotWindow(SnapshotHandler *handler)
|
explicit SnapshotWindow(SnapshotHandler *handler)
|
||||||
: BaseWindow(new SnapshotTreeView(handler))
|
: BaseWindow(new SnapshotTreeView(handler))
|
||||||
{}
|
{
|
||||||
|
setWindowTitle(tr("Snapshots"));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
|
|||||||
@@ -89,7 +89,9 @@ class WatchWindow : public BaseWindow
|
|||||||
public:
|
public:
|
||||||
explicit WatchWindow(WatchTreeView::Type type)
|
explicit WatchWindow(WatchTreeView::Type type)
|
||||||
: BaseWindow(new WatchTreeView(type))
|
: BaseWindow(new WatchTreeView(type))
|
||||||
{}
|
{
|
||||||
|
setWindowTitle(tr("Locals and Expressions"));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
|
|||||||
Reference in New Issue
Block a user