Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 4.0.1
-
Windows 7
Description
When a member variable begins with a 'm' and then some upper case it will not generate a getter correctly when refactoring. For example:
QWidget *mABCTest;
will generate:
QWidget *aBCTest() const;
and not:
QWidget *getABCTest() const;
as expected.