Yes, I haven't done a linux build lately so what you 're saying about associations.* is correct. I 'll fix it a little later.
But there is another issue with this dialogue:
XRCCTRL(*this, "txtBatchBuildsCmdLine", wxTextCtrl) seems to return a zero-pointer which makes Code::Blocks crash. According to the file 'src/resources/env_settings.xrc' a text-box-control named "txtBatchBuildsCmdLine" should exist. After removing all lines for "txtBatchBuildsCmdLine" in the constructor of 'EnvironmentSettingsDlg' Code::Blocks displays the dialogue but the tab where the text-box should be placed on is completely missing. I have no idea why this happens but could this explain the problem?
Run:
make clean-zipfiles
make
make install
so that resource zips get updated.
Resource zips and PCH should be auto-regenerated when needed but I haven't implemented this yet in autotools. I will though...
Thanks, it should be alright now.
Just one note to the "Find in files" issue:
If the behaviour I described above is desired, than a little change in line 1561 of the file 'sdk/editormanager.cpp' should do the trick.
Before:
wxArrayString masks = GetArrayFromString(data->searchMask);
After:
wxArrayString masks = GetArrayFromString((data->searchMask.empty()) ? "*" : data->searchMask);