* Install under c:\Qt (no space)
  * no worry about mingw installation
 
-$ cd ~/.wine/drive_c/Qt/4.3.5/
-$ find src -type d -o -name '*.h' | cpio -pmv /tmp/depkgs-mingw32/include
-or 
 $ cp -r ~/.wine/drive_c/Qt/4.3.5/src/    depkgs-mingw32/include
-
 $ cp -r ~/.wine/drive_c/Qt/4.3.5/include depkgs-mingw32/include/qt
 $ cp -r ~/.wine/drive_c/Qt/4.3.5/lib     depkgs-mingw32/lib/qt
 # cp ~/.wine/drive_c/Qt/4.3.5/bin/QtCore4.dll src/win32/release32
 
        <property name="title">
         <string>Running Information</string>
        </property>
-       <layout class="QGridLayout" name="gridLayout">
+       <layout class="QGridLayout">
         <item row="0" column="0">
          <widget class="QLabel" name="label_14">
           <property name="text">
 
 #!/bin/sh
 #
-#  Used to build the Windows version of bat and the tray-monitor 
+#  Used to build the Win32 version of bat
 #
 rm -f debug/bat.exe
 if test -f ../config.h ; then
    mv -f ../config.h ../config.h.orig
 fi
-# Create bat Makefile.mingw32
 qmake -spec win32 -unix -o Makefile.mingw32 bat.pro.mingw32
 echo "Make Windows bat"
 make -j3 -f Makefile.mingw32 $1
 
 cd tray-monitor
 rm -f release/bacula-tray-monitor.exe debug/bacula-tray-monitor.exe
-# Create tray-monitor Makefile.mingw32
 qmake -spec ../win32 -unix -o Makefile.mingw32 tray-monitor.pro
 echo "Make Windows tray-monitor"
 make -j3 -f Makefile.mingw32 $1