From 6aea22dc8c040eb32d0b6c089da99bf483492177 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Sun, 14 Feb 2016 15:11:49 +0300 Subject: [PATCH] In progress... --- src/AppDirs.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); }