From 100e074126753e43084d69e139d425d373b696b3 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 4 May 2011 14:48:03 +0200 Subject: [PATCH] QStylePainter belongs in QtWidgets Move it into the styles/ directory that will end up in the QtWidgets library --- src/gui/painting/painting.pri | 2 -- src/gui/{painting => styles}/qstylepainter.cpp | 0 src/gui/{painting => styles}/qstylepainter.h | 0 src/gui/styles/styles.pri | 4 +++- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/gui/{painting => styles}/qstylepainter.cpp (100%) rename src/gui/{painting => styles}/qstylepainter.h (100%) diff --git a/src/gui/painting/painting.pri b/src/gui/painting/painting.pri index c311739..4683238 100644 --- a/src/gui/painting/painting.pri +++ b/src/gui/painting/painting.pri @@ -35,7 +35,6 @@ HEADERS += \ painting/qrasterizer_p.h \ painting/qregion.h \ painting/qstroker_p.h \ - painting/qstylepainter.h \ painting/qtessellator_p.h \ painting/qtextureglyphcache_p.h \ painting/qtransform.h \ @@ -72,7 +71,6 @@ SOURCES += \ painting/qrasterizer.cpp \ painting/qregion.cpp \ painting/qstroker.cpp \ - painting/qstylepainter.cpp \ painting/qtessellator.cpp \ painting/qtextureglyphcache.cpp \ painting/qtransform.cpp \ diff --git a/src/gui/painting/qstylepainter.cpp b/src/gui/styles/qstylepainter.cpp similarity index 100% rename from src/gui/painting/qstylepainter.cpp rename to src/gui/styles/qstylepainter.cpp diff --git a/src/gui/painting/qstylepainter.h b/src/gui/styles/qstylepainter.h similarity index 100% rename from src/gui/painting/qstylepainter.h rename to src/gui/styles/qstylepainter.h diff --git a/src/gui/styles/styles.pri b/src/gui/styles/styles.pri index 35347c2..07ba608 100644 --- a/src/gui/styles/styles.pri +++ b/src/gui/styles/styles.pri @@ -10,7 +10,8 @@ HEADERS += \ styles/qstylehelper_p.h \ styles/qproxystyle.h \ styles/qproxystyle_p.h \ - styles/qstylesheetstyle_p.h + styles/qstylepainter.h \ + styles/qstylesheetstyle_p.h SOURCES += \ styles/qstyle.cpp \ @@ -20,6 +21,7 @@ SOURCES += \ styles/qstylehelper.cpp \ styles/qcommonstyle.cpp \ styles/qproxystyle.cpp \ + styles/qstylepainter.cpp \ styles/qstylesheetstyle.cpp \ styles/qstylesheetstyle_default.cpp -- 2.7.4