aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/common/statistics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/scxmleditor/common/statistics.cpp')
-rw-r--r--src/plugins/scxmleditor/common/statistics.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/scxmleditor/common/statistics.cpp b/src/plugins/scxmleditor/common/statistics.cpp
index 06c62f70b2a..cff7d337c37 100644
--- a/src/plugins/scxmleditor/common/statistics.cpp
+++ b/src/plugins/scxmleditor/common/statistics.cpp
@@ -135,13 +135,14 @@ Statistics::Statistics(QWidget *parent)
m_statisticsView->setAlternatingRowColors(true);
m_statisticsView->setSortingEnabled(true);
- using namespace Utils::Layouting;
+ using namespace Layouting;
Grid {
Tr::tr("File"), m_fileNameLabel, br,
Tr::tr("Time"), m_timeLabel, br,
Tr::tr("Max. levels"), m_levels, br,
- Span(2, m_statisticsView), br
- }.attachTo(this, WithoutMargins);
+ Span(2, m_statisticsView), br,
+ noMargin
+ }.attachTo(this);
}
void Statistics::setDocument(ScxmlDocument *doc)