Details
-
Bug
-
Resolution: Done
-
P4: Low
-
Qt Creator 2.6.0-beta
-
None
-
0a9fa88e443f4b7ef76d98b39575a1b3c212eda5
Description
I have a custom template wizard that uses nested @if conditions, here is an example:
@if "%PIMPL%" == "true" private: @if "%Internal%" == "true" Internal::%ClassName:c%Private *d; @else %ClassName:c%Private *d; @endif @endif
The output when the "PIMPL" in the wizard is checked and "Internal" is unchecked (for a TestClass ClassName:
Internal::TestClassPrivate *d;
This should not happen as the whole "PIMPL" block should be deactivated.