katie/util/normalize
Ivailo Monev 13b48ebdb1 place all private headers in single directory
should reduce the build time and also the length of the commands used
during build

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2020-12-01 19:20:31 +00:00
..
CMakeLists.txt place all private headers in single directory 2020-12-01 19:20:31 +00:00
main.cpp introduce QT_BUFFSIZE 2020-01-11 23:38:06 +00:00
README initial import 2015-12-10 05:06:13 +02:00

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/...