diff options
author | Ted Gould <ted@gould.cx> | 2014-02-11 20:52:49 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-02-11 20:52:49 -0600 |
commit | 66edc177867c09e696552a73862c29485194e704 (patch) | |
tree | b6e232201f5dbb7104fee09a857278400c710177 /src/main.vala | |
parent | 7da8553896b1967d44292e211e9573e2d2d18e74 (diff) | |
download | ayatana-indicator-sound-66edc177867c09e696552a73862c29485194e704.tar.gz ayatana-indicator-sound-66edc177867c09e696552a73862c29485194e704.tar.bz2 ayatana-indicator-sound-66edc177867c09e696552a73862c29485194e704.zip |
Switch the build to have a library of all the vala components
Diffstat (limited to 'src/main.vala')
-rw-r--r-- | src/main.vala | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main.vala b/src/main.vala deleted file mode 100644 index 4da9e58..0000000 --- a/src/main.vala +++ /dev/null @@ -1,14 +0,0 @@ - -[CCode (cheader_filename="libintl.h", type="char *")] -extern unowned string bind_textdomain_codeset (string domainname, string codeset); - -static int main (string[] args) { - bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8"); - Intl.setlocale (LocaleCategory.ALL, ""); - Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.GNOMELOCALEDIR); - - Notify.init ("indicator-sound"); - - var service = new IndicatorSound.Service (); - return service.run (); -} |