##// END OF EJS Templates
Initial example application for boxplot....
Initial example application for boxplot. Change-Id: I0de3c3744ea03f5631426812937d6e7ce69b3d92 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2109:69472ec64f97
r2463:0948467685b7
Show More
README
16 lines | 615 B | text/plain | TextLexer
This tool greps through files for SIGNAL() or SLOT() macros and pipes the signals/slots
through QMetaObject::normalizedSignature().
Rationale: In connect statements, you'll get a micro-speed update when passing in normalized
signatures for signals and slots.
Run it without any arguments to see the command line parameters.
Typical usage on Qt:
# find all files with non-normalized signal/slot connections and p4 edit them
normalize $QTDIR/src | xargs p4 edit
# replace all non-normalized signal/slots
normalize --modify $QTDIR/src
# p4 diff to see that everything is OK then submit :)
p4 submit $QTDIR/src/...