Move tst_qprinter.cpp to QtPrintSupport
authorDebao Zhang <dbzhang800@gmail.com>
Sat, 10 Mar 2012 02:43:21 +0000 (18:43 -0800)
committerQt by Nokia <qt-info@nokia.com>
Mon, 12 Mar 2012 12:14:05 +0000 (13:14 +0100)
QPrinter and QPrinterInfo belong to QtPrintSupport.

Change-Id: I0c146e0c717be365e752c1eaf7dbe6765fb72da2
Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
tests/auto/auto.pro
tests/auto/gui/painting/painting.pro
tests/auto/printsupport/kernel/kernel.pro [new file with mode: 0644]
tests/auto/printsupport/kernel/qprinter/.gitignore [moved from tests/auto/gui/painting/qprinter/.gitignore with 100% similarity]
tests/auto/printsupport/kernel/qprinter/qprinter.pro [moved from tests/auto/gui/painting/qprinter/qprinter.pro with 100% similarity]
tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp [moved from tests/auto/gui/painting/qprinter/tst_qprinter.cpp with 100% similarity]
tests/auto/printsupport/kernel/qprinterinfo/.gitignore [moved from tests/auto/gui/painting/qprinterinfo/.gitignore with 100% similarity]
tests/auto/printsupport/kernel/qprinterinfo/qprinterinfo.pro [moved from tests/auto/gui/painting/qprinterinfo/qprinterinfo.pro with 100% similarity]
tests/auto/printsupport/kernel/qprinterinfo/tst_qprinterinfo.cpp [moved from tests/auto/gui/painting/qprinterinfo/tst_qprinterinfo.cpp with 100% similarity]
tests/auto/printsupport/printsupport.pro [new file with mode: 0644]

index 63c4ca6..124af19 100644 (file)
@@ -13,6 +13,7 @@ SUBDIRS += \
     concurrent \
     other \
     widgets \
+    printsupport \
 
 cross_compile:                              SUBDIRS -= tools
 !contains(QT_CONFIG, opengl):               SUBDIRS -= opengl
index 62230ee..8f018fd 100644 (file)
@@ -7,12 +7,10 @@ SUBDIRS=\
    qregion \
    qpainter \
    qpathclipper \
-   qprinterinfo \
    qpen \
    qpaintengine \
    qtransform \
    qwmatrix \
-   qprinter \
    qpolygon \
 
 !contains(QT_CONFIG, private_tests): SUBDIRS -= \
diff --git a/tests/auto/printsupport/kernel/kernel.pro b/tests/auto/printsupport/kernel/kernel.pro
new file mode 100644 (file)
index 0000000..6f5802b
--- /dev/null
@@ -0,0 +1,4 @@
+TEMPLATE=subdirs
+SUBDIRS=\
+    qprinter \
+    qprinterinfo \
diff --git a/tests/auto/printsupport/printsupport.pro b/tests/auto/printsupport/printsupport.pro
new file mode 100644 (file)
index 0000000..69ba296
--- /dev/null
@@ -0,0 +1,3 @@
+TEMPLATE=subdirs
+SUBDIRS=\
+    kernel \