Set appliction name.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Thu, 19 Feb 2009 17:16:53 +0000 (17:16 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Thu, 19 Feb 2009 17:16:53 +0000 (17:16 +0000)
This is just the translated PACKAGE_NAME from config.h.

svn path=/trunk/; revision=615

src/rygel/cstuff.vapi
src/rygel/rygel-main.vala

index 25ab174..635ee96 100644 (file)
@@ -31,6 +31,9 @@ namespace CStuff {
 
         [CCode (cname = "PLUGIN_DIR")]
         public static const string PLUGIN_DIR;
+
+        [CCode (cname = "PACKAGE_NAME")]
+        public static const string PACKAGE_NAME;
     }
 
     /**
index 1835420..ff453b9 100644 (file)
@@ -36,6 +36,8 @@ public class Rygel.Main : Object {
     private int exit_code;
 
     public Main () throws GLib.Error {
+        Environment.set_application_name (_(BuildConfig.PACKAGE_NAME));
+
         this.media_servers = new ArrayList<MediaServer> ();
         this.plugin_loader = new PluginLoader ();
         this.ms_factory = new MediaServerFactory ();