Conflicting AppDirs fxd.
This commit is contained in:
parent
75f8ecc06e
commit
f987024016
|
@ -2,7 +2,7 @@ namespace Get {
|
||||||
extern void library_path (string so_path, void *addr);
|
extern void library_path (string so_path, void *addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace LAview.Core.Plugins {
|
namespace LAview.Core.Plugins.ObjectExample {
|
||||||
|
|
||||||
class AppDirs : Object {
|
class AppDirs : Object {
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ namespace LAview.Core.Plugins {
|
||||||
|
|
||||||
public ObjectExampleDialog (Object parent) throws Error {
|
public ObjectExampleDialog (Object 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 (ObjectExample.AppDirs.ui_dir + "/laview-plugin-object-example.glade");
|
||||||
builder.connect_signals (this);
|
builder.connect_signals (this);
|
||||||
|
|
||||||
dialog = builder.get_object ("object_example_dialog") as Dialog;
|
dialog = builder.get_object ("object_example_dialog") as Dialog;
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace LAview.Core.Plugins {
|
||||||
*/
|
*/
|
||||||
construct {
|
construct {
|
||||||
stdout.puts ("PluginObjectExample init () called\n");
|
stdout.puts ("PluginObjectExample init () called\n");
|
||||||
AppDirs.init ();
|
ObjectExample.AppDirs.init ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue