diff options
author | Jens Bache-Wiig <jbache@trolltech.com> | 2010-03-16 16:55:56 +0100 |
---|---|---|
committer | Jens Bache-Wiig <jbache@trolltech.com> | 2010-03-17 11:23:10 +0100 |
commit | d58184173e84e9e1d22fbf227ce1bb24ae88271d (patch) | |
tree | 89a5290422777c039dc306e29a09d9bf5993f394 /src/plugins/debugger/stackwindow.cpp | |
parent | 0146926f199da36b6c61d522eed54f76461a8e52 (diff) | |
download | qt-creator-d58184173e84e9e1d22fbf227ce1bb24ae88271d.tar.gz |
Clean up layouts and use minisplitter everywhere
This patch replaces all uses of QSplitter with thin 1-pixel
splitters. I also fixed dock widget layouts in main windows
to do the same. Additionally I had to tweak the tabbars so
they look good in mini splitter layouts to avoid a double
left-border.
Reviewed-by: thorbjorn
Diffstat (limited to 'src/plugins/debugger/stackwindow.cpp')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index a0029b79a7..c5e3637801 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -54,6 +54,7 @@ namespace Internal { StackWindow::StackWindow(DebuggerManager *manager, QWidget *parent) : QTreeView(parent), m_manager(manager), m_alwaysResizeColumnsToContents(false) { + setFrameStyle(QFrame::NoFrame); m_disassemblerAgent = new DisassemblerViewAgent(manager); QAction *act = theDebuggerAction(UseAlternatingRowColors); |