>>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
Angus> Jean-Marc Lasgouttes wrote: One other point. This: >> label += '\t' + QAccel::keyToString(key); Angus> is deprecated in the Qt docs which state that you should use: >> label += '\t' + static_cast<QString>(key); Angus> Ditto with any use of QAccel::stringToKey which should be Angus> replaced by QString qstr("foo"); QKeySequence kseq(qstr); This would mean that we use QKeySequence, which does not exist in Qt 2.3.x (needed for win32). JMarc