Permalink
Switch branches/tags
{{ refName }}
default
static-analysi…
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Commits on May 28, 2015
Commits on May 27, 2015
-
Removed forced garbage collection as it led to crashes on Linux (#425, …
…closes #464). The forced collection didn't have the expected effect and also caused sporadic crashes on some Linux versions.
Commits on May 25, 2015
Commits on May 24, 2015
Commits on May 22, 2015
Commits on May 21, 2015
-
Added workaround to fix crash on Linux from the project tree (#425, #464
). This could happen when a new file is created in the project tree with the same name as the existing file and then the application loses focus. This cancels editing of the filename (END_LABEL_EDIT), which shows a dialog to confirm overwriting of the existing file. When the dialog is shown, another event that cancels editing is generated (but in wxwidgets 2.9.5?), which causes two dialogs to be displayed, which leads to a crash after the second one is closed. The workaround moves the overwrite confirmation to the IDLE event.
Commits on May 20, 2015
-
-
Fixed crash in
collectgarbagefrom the filetree on Linux (#425, #464).This appears to be a wxwidgets (2.9.5) issue and can be reproduced by doing the following: - Start editing a new item in the file tree; - Right click on the text control (while editing); - This opens a context menu and triggers ACTIVATE_APP event; - `collectgarbage` call from that event causes a crash. Switching garbage collection to ACTIVATE_APP event when the app becomes active eliminates the crash.
Commits on May 18, 2015
Commits on May 16, 2015
-
Updated
AnalyzeStringto add filename parameter (closes #463).This can be used to provide a filename that would then load proper spec for the file (to take known API descriptions into account).
Commits on May 14, 2015
Commits on May 13, 2015
Commits on May 12, 2015
-
-
Added expanding folded/hidden lines when updating search results (#416).
This avoid the issue when the last line stays hidden after folding all lines in the search result tab and refreshing the results.