1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-07 02:22:16 +03:00
parent 03156ad027
commit bbc28d83b8
1 changed files with 6 additions and 3 deletions

View File

@ -27,17 +27,20 @@ namespace LAview.Core.Plugins {
[CCode (instance_pos = -1)]
public void button_apply_clicked (Button button) {
dialog.hide_on_delete ();
stdout.puts ("button_apply_clicked() called\n");
dialog.hide ();
}
[CCode (instance_pos = -1)]
public void button_ok_clicked (Button button) {
dialog.hide_on_delete ();
stdout.puts ("button_ok_clicked() called\n");
dialog.hide ();
}
[CCode (instance_pos = -1)]
public void button_cancel_clicked (Button button) {
dialog.hide_on_delete ();
stdout.puts ("button_cancel_clicked() called\n");
dialog.hide ();
}
}
}