Hello,
I created a simple component with introjucer, I named myDialog.
I put a few subcomponents on the area.
I generated my project to visual studio 2013 and inside the myDialog.cpp,
between the 2 tags:
//[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
//[/MiscUserCode]
I put 3 of my methods as for example
//[MiscUserCode] You can add your own definitions of your custom methods or any other code here... void myclass::method1() { } void myclass::method2() { } void myclass::method3() { } //[/MiscUserCode]
Until here, if then I back to Introjucer and I click on myDialog.cpp, the GUI editor could appear again.
But...if between
//[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
//[/MiscUserCode]
I put some comments, with /* */ or //----- etc...
when I back to Introjucer when I click on myDialog.cpp I could see the code but GUI editor refuses to appear.
Then if I remove the comments, GUI editor could appear again...