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 42 additions and 42 deletions
src/EOSConnect.vala
src/Conecto.vala
......@@ -16,14 +16,14 @@
* gyan000 <gyan000 (at] ijaz.fr>
* Hannes Schulze <haschu0103 (at) gmail.com>
*/
using EOSConnect.Plugin;
using EOSConnect.Plugin.Windows;
using EOSConnect.Widgets;
using Conecto.Plugin;
using Conecto.Plugin.Windows;
using Conecto.Widgets;
using Gee;
using MConnect;
using Unity;
namespace EOSConnect {
namespace Conecto {
public class App : Granite.Application {
......
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
namespace EOSConnect {
namespace Conecto {
public class Config : Object {
......
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
namespace EOSConnect {
namespace Conecto {
public class Contact : Object {
......
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
namespace EOSConnect {
namespace Conecto {
public abstract class ContactsInterface : Object {
......
......@@ -17,7 +17,7 @@
*/
using MConnect;
namespace EOSConnect {
namespace Conecto {
public class Contractor {
......@@ -65,8 +65,8 @@ namespace EOSConnect {
string str_desc="Description=Send this file to " + device.custom_name + "\n";
// TOCHEK find out why without --print-reply it's not working.
string str_command ="Exec=dbus-send --print-reply --dest=com.github.hannesschulze.conecto ";
str_command += "/com/github/gyan000/eosconnect/share ";
str_command += "com.github.gyan000.eosconnect.Share.Files ";
str_command += "/com/github/hannesschulze/conecto/share ";
str_command += "com.github.hannesschulze.conecto.Share.Files ";
str_command += "string:'" + device.id + "' string:'%F'\n";
os.write ("[Contractor Entry]\n".data);
os.write (str_name.data);
......
......@@ -17,7 +17,7 @@
*/
using MConnect;
namespace EOSConnect {
namespace Conecto {
public class DebugToolbar : Gtk.Grid {
......
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
namespace EOSConnect {
namespace Conecto {
public class EContacts : ContactsInterface {
......
......@@ -15,14 +15,14 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Plugin;
using EOSConnect.Plugin.Windows;
using EOSConnect.Widgets;
using Conecto.Plugin;
using Conecto.Plugin.Windows;
using Conecto.Widgets;
using Gee;
using Granite.Widgets;
using MConnect;
namespace EOSConnect {
namespace Conecto {
public class MainWindow : Gtk.ApplicationWindow {
......
......@@ -15,7 +15,7 @@
* AUTHORS
* gyan000 <gyan000(at] ijaz.fr>
*/
namespace EOSConnect {
namespace Conecto {
public class Notification : Object {
public string id { get; private set; }
public string app_name { get; private set; }
......
......@@ -15,12 +15,12 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Plugin.Popover;
using EOSConnect.Widgets;
using Conecto.Plugin.Popover;
using Conecto.Widgets;
using Gee;
using MConnect;
namespace EOSConnect.Plugin {
namespace Conecto.Plugin {
public class Battery : PluginInterface {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
using MConnect;
namespace EOSConnect.Plugin.Dialogs {
namespace Conecto.Plugin.Dialogs {
public class NotificationSettings : Gtk.Dialog {
......
......@@ -15,9 +15,9 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
namespace EOSConnect.Plugin.Dialogs {
namespace Conecto.Plugin.Dialogs {
public class ShareFileInfoProgress : Gtk.Dialog {
......
......@@ -15,11 +15,11 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Plugin.Dialogs;
using Conecto.Plugin.Dialogs;
using Gee;
using MConnect;
namespace EOSConnect.Plugin {
namespace Conecto.Plugin {
public class @Notification : PluginInterface {
......
......@@ -15,11 +15,11 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Widgets;
using EOSConnect.Plugin;
using Conecto.Widgets;
using Conecto.Plugin;
using MConnect;
namespace EOSConnect.Plugin {
namespace Conecto.Plugin {
public class Ping : PluginInterface {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect.Widgets;
using Conecto.Widgets;
using MConnect;
namespace EOSConnect.Plugin {
namespace Conecto.Plugin {
public abstract class PluginInterface : GLib.Object {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
using MConnect;
namespace EOSConnect.Plugin.Popover {
namespace Conecto.Plugin.Popover {
public class BatterySettings : Gtk.Popover {
......
......@@ -15,12 +15,12 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using EOSConnect.Plugin.Widgets;
using Conecto;
using Conecto.Plugin.Widgets;
using Gee;
using MConnect;
namespace EOSConnect.Plugin.Popover {
namespace Conecto.Plugin.Popover {
public class SMSNewMessageNewContact : Gtk.Popover {
......@@ -83,7 +83,7 @@ namespace EOSConnect.Plugin.Popover {
SMS sms = new SMS (
message,
SMS.FROM_ME,
SMS.FROM_TYPE_EOSCONNECT,
SMS.FROM_TYPE_CONECTO,
new DateTime.now_utc ());
if (device.has_capability_handler (TelephonyHandler.TELEPHONY) ) {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
using MConnect;
namespace EOSConnect.Plugin.Popover {
namespace Conecto.Plugin.Popover {
public class ShareSettings : Gtk.Popover {
......
......@@ -15,10 +15,10 @@
* AUTHORS
* gyan000 <gyan000 (at] ijaz.fr>
*/
using EOSConnect;
using Conecto;
using MConnect;
namespace EOSConnect.Plugin.Popover {
namespace Conecto.Plugin.Popover {
public class TelephonySettings : Gtk.Popover {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment