diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2012-03-30 09:39:23 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-03-30 09:43:03 +0200 |
commit | 2395416b3790e164295f5b000aed67136ceb16ed (patch) | |
tree | 6fe43e056db9a1762b4b52552923f745e4dc6e97 /src/plugins/debugger/stackwindow.h | |
parent | 95cfe23e9581d081f01f97b14ce6355722680234 (diff) | |
download | qt-creator-2395416b3790e164295f5b000aed67136ceb16ed.tar.gz |
StackWindow: Set the window title
Regression introduced by 47fea30557902daf677ca5e03702cdc94fe541e1
Change-Id: I9157ab5c1a43525c563c79213c450e481fec41d5
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/stackwindow.h')
-rw-r--r-- | src/plugins/debugger/stackwindow.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/debugger/stackwindow.h b/src/plugins/debugger/stackwindow.h index c76fa24658..239c043c0d 100644 --- a/src/plugins/debugger/stackwindow.h +++ b/src/plugins/debugger/stackwindow.h @@ -59,7 +59,10 @@ private: class StackWindow : public BaseWindow { public: - StackWindow() : BaseWindow(new StackTreeView) {} + StackWindow() : BaseWindow(new StackTreeView) + { + setWindowTitle(tr("Stack")); + } }; } // namespace Internal |