LEFT | RIGHT |
(Both sides are equal) |
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ | 1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
2 /* vim:set et sts=4: */ | 2 /* vim:set et sts=4: */ |
3 /* ibus - The Input Bus | 3 /* ibus - The Input Bus |
4 * Copyright (c) 2010, Google Inc. All rights reserved. | 4 * Copyright (c) 2010, Google Inc. All rights reserved. |
5 * Copyright (C) 2010 Peng Huang <shawn.p.huang@gmail.com> | 5 * Copyright (C) 2010 Peng Huang <shawn.p.huang@gmail.com> |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Lesser General Public | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 IBusConfigMemconf * | 193 IBusConfigMemconf * |
194 ibus_config_memconf_new (GDBusConnection *connection) | 194 ibus_config_memconf_new (GDBusConnection *connection) |
195 { | 195 { |
196 IBusConfigMemconf *config; | 196 IBusConfigMemconf *config; |
197 config = (IBusConfigMemconf *) g_object_new (IBUS_TYPE_CONFIG_MEMCONF, | 197 config = (IBusConfigMemconf *) g_object_new (IBUS_TYPE_CONFIG_MEMCONF, |
198 "object-path", IBUS_PATH_CONFIG
, | 198 "object-path", IBUS_PATH_CONFIG
, |
199 "connection", connection, | 199 "connection", connection, |
200 NULL); | 200 NULL); |
201 return config; | 201 return config; |
202 } | 202 } |
LEFT | RIGHT |