aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackwindow.h
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2012-03-30 09:39:23 +0200
committerhjk <qthjk@ovi.com>2012-03-30 09:43:03 +0200
commit2395416b3790e164295f5b000aed67136ceb16ed (patch)
tree6fe43e056db9a1762b4b52552923f745e4dc6e97 /src/plugins/debugger/stackwindow.h
parent95cfe23e9581d081f01f97b14ce6355722680234 (diff)
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.h5
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