Skip to content

hebaishi/qt4-qt5-convert

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

qt4-qt5-convert

Tool for automatic conversion of Qt4 signal/slot connections to Qt5

This aim here is to create a tool that will convert Qt4 signal/slot connections to the new Qt5 syntax using clang's AST.

The end-goal is convert this:

connect(
    sender, SIGNAL( valueChanged( QString, QString ) ),
    receiver, SLOT( updateValue( QString ) )
);

into this:

connect(
    sender, &Sender::valueChanged,
    receiver, &Receiver::updateValue
);

About

Tool for automatic conversion of Qt4 signal/slot connections to Qt5

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published