Short Description: Qt4 Port: Simple Qt3-compat classes in C++ modules Bug Number: n/a Release notes (y/n): No. For Release Nums: 5.3 Qt4 Port: Processing of simple Qt3-compat classes in C++ modules The CVS repository was tagged before this checkin: Qt4PortJan10a Substitute seven transparently compatible Qt3-compatible classes with Qt4 Classes, and replace old-style Qt includes, in the C++ source files (and NOT the Qt Designer UI files) in these six libraries: 125 Q3GUI 34 QtAccounting 21 QtRpl 38 QtRun 16 QtSCT 19 QtUtils Class substitutions: (1) Q3MainWindow --> QMainWindow (2) Q3Frame --> QFrame (3) Q3PopupMenu --> QMenu (4) Q3BoxLayout --> QBoxLayout (5) Q3VBoxLayout --> QVBoxLayout (6) Q3HBoxLayout --> QHBoxLayout (7) Q3GridLayout --> QGridLayout These Q3 compatibility widgets were placed in these files by the Qt 4.3 'qt3to4' translation tool. That was overly conservative -- the corresponding Qt4 widgets provide virtually all of the methods and functionality used in RiverWare. (There were some very minor exeptions, which were caught by by the compiler). These classes represent a substantial majority of Qt3 compatibility widgets needing to be removed (approx. from RiverWare 5.2) -- but obviously not the most difficult to port to Qt4-proper. (Way). See Qt4 port project notes: http://cadswes2.colorado.edu/~philw/2010/Qt4Port/ ---