1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-04 00:52:07 +03:00
parent 6c9c091a60
commit d960581299
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
namespace LAview.Core.Plugins { namespace LAview.Core.Plugins {
using Gtk, LAview; using Gtk, LAview;
public class ObjectExampleDialog1 { class ObjectExampleDialog1 {
Dialog dialog; Dialog dialog;
public ObjectExampleDialog1 (Window parent) throws Error { ObjectExampleDialog1 (Window parent) throws Error {
var builder = new Builder (); var builder = new Builder ();
builder.add_from_file (AppDirs.ui_dir + "/laview-plugin-object-example.glade"); builder.add_from_file (AppDirs.ui_dir + "/laview-plugin-object-example.glade");
builder.connect_signals (this); builder.connect_signals (this);

View File

@ -8,7 +8,7 @@ namespace LAview.Core.Plugins {
*/ */
public class PluginObjectExample : PluginObject { public class PluginObjectExample : PluginObject {
ObjectExampleDialog1 object_dialog = null; //ObjectExampleDialog1 object_dialog = null;
/** /**
* Constructs a new ``PluginObjectExample``. * Constructs a new ``PluginObjectExample``.