From 3fe8c2cf27206961c6f7f9d0fa8b05ad6c8706d8 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Sun, 3 Apr 2016 16:51:24 +0300 Subject: [PATCH] In progress... --- src/AppDirs.vala | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/AppDirs.vala diff --git a/src/AppDirs.vala b/src/AppDirs.vala deleted file mode 100644 index c47169b..0000000 --- a/src/AppDirs.vala +++ /dev/null @@ -1,32 +0,0 @@ -extern static char SO_PATH[256]; - -/*namespace LAview.Core { - - class AppDirs { - - public static File so_path; - public static File exec_dir; - public static File common_dir; - public static string data_plugins_dir; - public static string object_plugins_dir; - public static string ui_dir; - public static string settings_dir; - - public static void init () { - so_path = File.new_for_path ((string)SO_PATH); - exec_dir = so_path.get_parent (); - common_dir = exec_dir.get_parent (); - ui_dir = Path.build_path (Path.DIR_SEPARATOR_S, common_dir.get_path(), - "share/laview-core-"+Config.VERSION_MAJOR.to_string()+"/ui"); - settings_dir = Path.build_path (Path.DIR_SEPARATOR_S, common_dir.get_path(), "share/glib-2.0/schemas"); - data_plugins_dir = Path.build_path (Path.DIR_SEPARATOR_S, exec_dir.get_path(), - "laview-core-"+Config.VERSION_MAJOR.to_string()+"/data-plugins"); - object_plugins_dir = Path.build_path (Path.DIR_SEPARATOR_S, exec_dir.get_path(), - "laview-core-"+Config.VERSION_MAJOR.to_string()+"/object-plugins"); - - } - - public static void terminate () { - } - } -}*/