diff options
author | William Hua <william.hua@canonical.com> | 2014-09-12 15:38:33 -0400 |
---|---|---|
committer | William Hua <william.hua@canonical.com> | 2014-09-12 15:38:33 -0400 |
commit | 506ff05f6243b34ed59485fc28ff23867f377c72 (patch) | |
tree | 6dfe858a2dcc58ef2ecbdf7170e0344ccddc56d6 /lib | |
parent | 449e1ab74019f4d1e9d60f3b97a31309a6f793fa (diff) | |
download | ayatana-indicator-keyboard-506ff05f6243b34ed59485fc28ff23867f377c72.tar.gz ayatana-indicator-keyboard-506ff05f6243b34ed59485fc28ff23867f377c72.tar.bz2 ayatana-indicator-keyboard-506ff05f6243b34ed59485fc28ff23867f377c72.zip |
Remove unnecessary namespace.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/source.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/source.vala b/lib/source.vala index 7850f211..f73b4b69 100644 --- a/lib/source.vala +++ b/lib/source.vala @@ -136,7 +136,7 @@ public class Indicator.Keyboard.Source : Object { private static Fcitx.InputMethod get_fcitx_proxy () throws Error { if (fcitx_proxy == null) { - fcitx_proxy = new Fcitx.InputMethod (GLib.BusType.SESSION, GLib.DBusProxyFlags.NONE, 0); + fcitx_proxy = new Fcitx.InputMethod (BusType.SESSION, DBusProxyFlags.NONE, 0); } return (!) fcitx_proxy; |