Skip to content
Snippets Groups Projects
Commit 3570068c authored by Hannes Schulze's avatar Hannes Schulze
Browse files

Change names in Namespaces

parent b986c60f
No related branches found
No related tags found
No related merge requests found
Showing
with 27 additions and 27 deletions
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
namespace EOSConnect.Views {
namespace Conecto.Views {
public class MainSettingsView : Gtk.Stack {
......
......@@ -17,7 +17,7 @@
*/
using MConnect;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class DeviceListActionBarFooter : Gtk.ActionBar {
......
......@@ -17,7 +17,7 @@
*/
using MConnect;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class DeviceListBox : Gtk.ListBox {
......
......@@ -17,7 +17,7 @@
*/
using MConnect;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class DeviceListBoxRow : Gtk.ListBoxRow {
......
......@@ -16,10 +16,10 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using MConnect;
using EOSConnect.Plugin;
using EOSConnect.Plugin.Windows;
using Conecto.Plugin;
using Conecto.Plugin.Windows;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class DeviceMenuitem : Dbusmenu.Menuitem {
......@@ -105,7 +105,7 @@ namespace EOSConnect.Widgets {
((Share)device.get_plugin (ShareHandler.SHARE_PKT)).select_files (device);
});
child_append (sub_menu_item_share);
EOSConnect.Contractor.create_contract (device);
Conecto.Contractor.create_contract (device);
}
sub_menu_item_share.property_set (Dbusmenu.MENUITEM_PROP_ICON_NAME, "send-to");
......@@ -114,7 +114,7 @@ namespace EOSConnect.Widgets {
if (sub_menu_item_share != null) {
child_delete (sub_menu_item_share);
sub_menu_item_share = null;
EOSConnect.Contractor.destroy_contract (device);
Conecto.Contractor.destroy_contract (device);
}
}
}
......
......@@ -16,9 +16,9 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using MConnect;
using EOSConnect.Plugin;
using Conecto.Plugin;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class PluginListBox : Gtk.ListBox {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Plugin;
using Conecto.Plugin;
using MConnect;
namespace EOSConnect.Widgets {
namespace Conecto.Widgets {
public class PluginListBoxRow : Gtk.ListBoxRow {
public weak PluginInterface plugin_interface { get; construct; }
......
......@@ -16,7 +16,7 @@
* Maciek Borzecki <maciek.borzecki (at] gmail.com>
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
namespace MConnect {
......
......@@ -17,8 +17,8 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using Gee;
using EOSConnect;
using EOSConnect.Plugin;
using Conecto;
using Conecto.Plugin;
namespace MConnect {
......@@ -397,13 +397,13 @@ namespace MConnect {
public void setup_plugins () {
var schema = SettingsSchemaSource.get_default ().lookup (
EOSConnect.App.GSETTINGS_SCHEMA_ID + ".settings.device",
Conecto.App.GSETTINGS_SCHEMA_ID + ".settings.device",
false);
if (schema != null) {
debug ("Getting config for device ID: " + id);
settings = new GLib.Settings.full (schema,
null,
EOSConnect.App.GSETTINGS_SCHEMA_PATH + "/settings/devices/%s/".printf (id));
Conecto.App.GSETTINGS_SCHEMA_PATH + "/settings/devices/%s/".printf (id));
if (settings.get_string ("custom-name").length > 1) {
custom_name = settings.get_string ("custom-name");
......
......@@ -17,7 +17,7 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using Gee;
using EOSConnect;
using Conecto;
namespace MConnect {
......
......@@ -35,7 +35,7 @@ namespace MConnect {
public string destination = "";
public DownloadTransfer (Device device, InetSocketAddress isa, uint64 size, string destination) {
this.launcher_entry = Unity.LauncherEntry.get_for_desktop_id (EOSConnect.App.GSETTINGS_SCHEMA_ID + ".desktop");
this.launcher_entry = Unity.LauncherEntry.get_for_desktop_id (Conecto.App.GSETTINGS_SCHEMA_ID + ".desktop");
this.isa = isa;
this.cancellable = new Cancellable ();
this.destination = destination;
......
......@@ -17,7 +17,7 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using Gee;
using EOSConnect;
using Conecto;
namespace MConnect {
......
......@@ -37,7 +37,7 @@ namespace MConnect {
if (ShareHandler.DOWNLOADS == null) {
ShareHandler.DOWNLOADS = Path.build_filename (
Environment.get_user_special_dir (UserDirectory.DOWNLOAD), "EOSConnect");
Environment.get_user_special_dir (UserDirectory.DOWNLOAD), "Conecto");
if (DirUtils.create_with_parents (ShareHandler.DOWNLOADS, 0700) == -1) {
warning ("Failed to create downloads directory: %s", Posix.strerror (Posix.errno));
......
......@@ -16,7 +16,7 @@
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Plugin;
using Conecto.Plugin;
using Gee;
using MConnect;
......
......@@ -16,8 +16,8 @@
* Maciek Borzecki <maciek.borzecki (at] gmail.com>
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using EOSConnect.Plugin;
using Conecto;
using Conecto.Plugin;
namespace MConnect {
......@@ -108,7 +108,7 @@ namespace MConnect {
notification.set_body (notif_body);
if (event == "sms") {
// Action defined in EOSConnect._init_sms_history_view ()
// Action defined in Conecto._init_sms_history_view ()
notification.set_default_action ("app.telephony-open-sms-tab");
}
......
......@@ -43,7 +43,7 @@ namespace MConnect {
int file_num = 1,
string file_uri = ""
) {
this.launcher_entry = Unity.LauncherEntry.get_for_desktop_id (EOSConnect.App.GSETTINGS_SCHEMA_ID + ".desktop");
this.launcher_entry = Unity.LauncherEntry.get_for_desktop_id (Conecto.App.GSETTINGS_SCHEMA_ID + ".desktop");
this.socket_service = socket_service;
this.cancellable = new Cancellable ();
this.device = device;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment