Merge "Merge branch 'master' into refactor" into refactor
[profile/ivi/qtbase.git] / bin / fixqt4headers
index 0bb6add..58b0fdf 100755 (executable)
@@ -2,13 +2,13 @@
 
 modules=`ls $QTDIR/include`
 
-files=`find * -name '*.h' -or -name '*.cpp' -or -name '*.C'`
+files=`find * -name '*.h' -or -name '*.cpp' -or -name '*.C' -or -name '*.cc' -or -name '*.CC'`
 
 echo $files
 
 for module in $modules; do
 # once we change other things, change the line from == "QtWidgets" to != "Qt" to get everything fixed
-    if [ $module == "QtWidgets" ]; then
+    if [ $module == "QtWidgets" ] || [ $module == "QtPrintSupport" ]; then
         echo $module ":"
         includes=`ls $QTDIR/include/$module`
         for i in $includes; do