DebuggerWindows: Set the window title

Regression introduced by 47fea30557

Change-Id: Ic007ac00e86f26bd3959b3bea0831b4d2cf41182
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Aurindam Jana
2012-03-30 09:39:23 +02:00
committed by hjk
parent 2395416b37
commit 2ee1d10d2c
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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