Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
b107dde4
"git@git.frama-c.com:pub/colibrics.git" did not exist on "7f5700465343e1927a07782b35fccc1cb9b5324d"
Commit
b107dde4
authored
5 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Wp] Fixes a segmentation fault on lablgtk3: do not create a gtk button too early.
parent
9b437bda
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/wp/GuiConfig.ml
+1
-1
1 addition, 1 deletion
src/plugins/wp/GuiConfig.ml
src/plugins/wp/GuiConfig.mli
+1
-1
1 addition, 1 deletion
src/plugins/wp/GuiConfig.mli
src/plugins/wp/GuiPanel.ml
+1
-1
1 addition, 1 deletion
src/plugins/wp/GuiPanel.ml
with
3 additions
and
3 deletions
src/plugins/wp/GuiConfig.ml
+
1
−
1
View file @
b107dde4
...
...
@@ -165,7 +165,7 @@ type mprover =
|
COQ
|
WHY
of
VCS
.
Why3_prover
.
t
class
dp_button
=
class
dp_button
()
=
let
render
=
function
|
NONE
->
"(none)"
|
ERGO
->
"Alt-Ergo (native)"
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/GuiConfig.mli
+
1
−
1
View file @
b107dde4
...
...
@@ -33,7 +33,7 @@ class dp_chooser :
method
run
:
unit
->
unit
(** Edit enabled provers *)
end
class
dp_button
:
class
dp_button
:
unit
->
object
inherit
Widget
.
widget
method
update
:
unit
->
unit
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/GuiPanel.ml
+
1
−
1
View file @
b107dde4
...
...
@@ -220,7 +220,7 @@ let wp_panel
~
label
:
"Provers..."
~
tooltip
:
"Detect WP Provers"
()
in
prover_cfg
#
connect
configure_provers
;
form
#
add_label_widget
prover_cfg
#
coerce
;
let
prover_menu
=
new
GuiConfig
.
dp_button
in
let
prover_menu
=
new
GuiConfig
.
dp_button
()
in
form
#
add_field
prover_menu
#
coerce
;
Gtk_form
.
register
demon
prover_menu
#
update
;
(* End Form *)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment