~unity-team/unity-lens-sample/trunk

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: Michal Hruby
  • Date: 2012-01-30 22:06:04 UTC
  • Revision ID: michal.mhr@gmail.com-20120130220604-vs5dwe3j2y7v8vqi
Update for libunity 5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
using Config;
8
8
 
9
 
namespace Unity.SamplePlace {
 
9
namespace Unity.SampleLens {
10
10
 
11
11
  static Daemon? daemon = null;
12
12
  static MainLoop? mainloop = null;
13
13
 
14
14
  public static int main (string[] args)
15
15
    {
 
16
      /* Set up necesities for i18n */
16
17
      GLib.Intl.textdomain (Config.PACKAGE);
17
18
      GLib.Intl.bindtextdomain (Config.PACKAGE, Config.LOCALEDIR);
18
19
      GLib.Intl.bind_textdomain_codeset (Config.PACKAGE, "UTF-8");
19
20
      GLib.Intl.setlocale(GLib.LocaleCategory.ALL, "");
20
21
    
21
 
      DesktopAppInfo.set_desktop_env ("GNOME");
22
 
      
23
 
      /* Export the place daemon on the session bus - as everywhere else
24
 
       * these values should match those definedd in the .place file */
25
 
      Bus.own_name (BusType.SESSION, "com.canonical.Unity.SamplePlace",
 
22
      DesktopAppInfo.set_desktop_env ("Unity");
 
23
 
 
24
      /* Export the lens daemon on the session bus - as everywhere else
 
25
       * these values should match those definedd in the .lens file */
 
26
      Bus.own_name (BusType.SESSION, "com.canonical.Unity.SampleLens",
26
27
                    BusNameOwnerFlags.NONE,
27
28
                    on_bus_acquired, on_name_acquired, on_name_lost);
28
29
      
55
56
    mainloop.quit ();
56
57
  }
57
58
  
58
 
} /* End namespace Unity.SamplePlace */
 
59
} /* End namespace Unity.SampleLens */