Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 3.0.0
-
None
-
Windows 8.1 Pro 64-bit (under Parallels for Mac), Qt MSVC 2012 64-bit
-
bde1f044bc99950d3bba2b6b7a243cf9b591ea30
Description
Before rename:
#include <QCoreApplication> void findValueByName() { } int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); findValueByName(); return a.exec(); }
Attempt to refactor -> rename findValueByName to findByName results in:
#include <QCoreApplication> void find ByName() { } int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); find ByName(); return a.exec(); }
Note: the apparent space between "find" and "ByName" is not an actual space but something else, as copy and paste stops after "find".
Attachments
Issue Links
- relates to
-
QTCREATORBUG-11610 Crash on replacing with "Preserve case"
-
- Closed
-
- replaces
-
QTCREATORBUG-11247 Rename symbol results in wrong result (ref. QTCREATORBUG-11194)
-
- Closed
-