Change case of QT Moc file
I recently refactored old code files from ABCFile.cpp/.h to AbcFile.cpp/.h to match my company's coding standards. After updating all the开发者_StackOverflow references to the old case styling, the code is compiling and running just fine, but looking at qt's automatically generated moc files the casing matches the old style.
What do I need to update qt's references to the updated files?
I have already run a "rebuild all" in Visual Studio, which should run a clean and then fully build deleting and rebuilding moc files.
This is most likely caused by your Makefile/build procedure. Try to force it to do a full clean and recompile. It should delete all your moc files and regenerate them.
精彩评论