diff --git a/src/AppDirs.vala b/src/AppDirs.vala index 65b648e..c47169b 100644 --- a/src/AppDirs.vala +++ b/src/AppDirs.vala @@ -8,7 +8,7 @@ extern static char SO_PATH[256]; public static File exec_dir; public static File common_dir; public static string data_plugins_dir; - public static string protocol_plugins_dir; + public static string object_plugins_dir; public static string ui_dir; public static string settings_dir; @@ -21,8 +21,8 @@ extern static char SO_PATH[256]; 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"); - protocol_plugins_dir = Path.build_path (Path.DIR_SEPARATOR_S, exec_dir.get_path(), - "laview-core-"+Config.VERSION_MAJOR.to_string()+"/protocol-plugins"); + object_plugins_dir = Path.build_path (Path.DIR_SEPARATOR_S, exec_dir.get_path(), + "laview-core-"+Config.VERSION_MAJOR.to_string()+"/object-plugins"); }