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) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> | 4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> |
5 * Copyright (C) 2008-2010 Red Hat, Inc. | 5 * Copyright (C) 2008-2010 Red Hat, Inc. |
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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1227 return parent_initable_iface->init (initable, | 1227 return parent_initable_iface->init (initable, |
1228 cancellable, | 1228 cancellable, |
1229 error); | 1229 error); |
1230 } | 1230 } |
1231 | 1231 |
1232 static void | 1232 static void |
1233 bus_engine_proxy_initable_iface_init (GInitableIface *initable_iface) | 1233 bus_engine_proxy_initable_iface_init (GInitableIface *initable_iface) |
1234 { | 1234 { |
1235 initable_iface->init = initable_init; | 1235 initable_iface->init = initable_init; |
1236 } | 1236 } |
LEFT | RIGHT |