Skip to content

fix broken Qt connects with c-string args

Keith Chambers requested to merge fix_broken_connects into 1.2

QWidgets don't use const char* in their signals, and mismatches between connect signals and slots doesn't cause a compile error.

This commit fixes a bunch of connects that were trying to connect a slot to a signal that didn't exist, by updating slots and connect callsites to take a const QString& instead of a const char*

Merge request reports

Loading