-
Notifications
You must be signed in to change notification settings - Fork 61
Closed
Labels
Description
I'm using clazy to to update old-style-connect.
More information here and here.
The new syntax is safer because it's checked at compile time. But also it should be marginally faster (I measured no difference).
The clazy automated fix seem to work well but there are about 32 other old style connect that I will fix manually.
I think I found several that should not be working in current code. However I don't know how to test them:
Line 223 in db86845
connect(savePb, SIGNAL(pressed()), sm, SLOT(saveAllContours()));
saveAllContoursis a private slot. Can you let me know how to test this specific line ? I don't know what corresponds toOGLviewin the GUI.- the signature of
Line 169 in db86845
myMenu.addAction("Save as image", this, SLOT(saveImage())); saveImage(QString fileName)doesn't matchQAction::triggered(bool checked = false) - probably broken since Some code improvements #211 (me).
Line 13 in db86845
connect(Picker, SIGNAL(selected(QString)),this,SLOT(selectedwave(QString))); Line 184 in db86845
connect(m_surfTools, SIGNAL(updateSelected()), m_surfaceManager, SLOT(backGroundUpdate())); SurfaceManager::backGroundUpdateis a private slot- ...
- List will increase when I work on it
Reactions are currently unavailable