From 4845e95acb542120191f309e050d785699730048 Mon Sep 17 00:00:00 2001 From: RJ Ryan Date: Sat, 30 Nov 2013 19:19:10 -0500 Subject: Header/include cleanups across the codebase. * Eliminate all instances of including QtCore, QtGui, or QtXml. * Replace all old-style Qt header inclusions with new-style (e.g. #include ). * Include QtDebug instead of QDebug. * Update many classes to include the Qt classes they use in their header and implementation file. This speeds up compile and link performance and reduces the size of the compiled object files. My build directory dropped by 50MB. --- src/widget/wnumber.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/widget/wnumber.cpp') diff --git a/src/widget/wnumber.cpp b/src/widget/wnumber.cpp index f6fc182fc7..2dd0d11d04 100644 --- a/src/widget/wnumber.cpp +++ b/src/widget/wnumber.cpp @@ -15,13 +15,15 @@ * * ***************************************************************************/ -#include "wnumber.h" -#include "wskincolor.h" +#include "widget/wnumber.h" + #include -#include +#include #include #include +#include "widget/wskincolor.h" + WNumber::WNumber(QWidget * parent) : WWidget(parent) { m_pLabel = new QLabel(this); -- cgit v1.2.3