1
0
Fork 0

Conflicting AppDirs fxd.

This commit is contained in:
Kolan Sh 2018-04-27 15:02:56 +03:00
parent 75f8ecc06e
commit f987024016
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ namespace Get {
extern void library_path (string so_path, void *addr);
}
namespace LAview.Core.Plugins {
namespace LAview.Core.Plugins.ObjectExample {
class AppDirs : Object {

View File

@ -8,7 +8,7 @@ namespace LAview.Core.Plugins {
public ObjectExampleDialog (Object parent) throws Error {
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);
dialog = builder.get_object ("object_example_dialog") as Dialog;

View File

@ -15,7 +15,7 @@ namespace LAview.Core.Plugins {
*/
construct {
stdout.puts ("PluginObjectExample init () called\n");
AppDirs.init ();
ObjectExample.AppDirs.init ();
}
/**