diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-09 16:05:20 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-09 16:05:20 +0200 |
commit | b72daf9dbba95a208a4fb84e5b1c629d64a72c00 (patch) | |
tree | ece23b16b6da70bfc0c5ce9d16de3ff0b95be1e9 /src/uca-plugin-manager.c | |
parent | 0d329da1679e1a3a8639131560ad101d94aace9b (diff) | |
download | uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.gz uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.bz2 uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.xz uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.zip |
Fix #151: Rename trigger enum value
Diffstat (limited to 'src/uca-plugin-manager.c')
-rw-r--r-- | src/uca-plugin-manager.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/src/uca-plugin-manager.c b/src/uca-plugin-manager.c index cb7e518..373ccb2 100644 --- a/src/uca-plugin-manager.c +++ b/src/uca-plugin-manager.c @@ -1,3 +1,20 @@ +/* Copyright (C) 2012 Matthias Vogelgesang <matthias.vogelgesang@kit.edu> + (Karlsruhe Institute of Technology) + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + details. + + You should have received a copy of the GNU Lesser General Public License along + with this library; if not, write to the Free Software Foundation, Inc., 51 + Franklin St, Fifth Floor, Boston, MA 02110, USA */ + /** * SECTION:uca-plugin-manager * @Short_description: Load an #UcaFilter from a shared object @@ -47,7 +64,6 @@ uca_plugin_manager_error_quark (void) /** * uca_plugin_manager_new: - * @config: (allow-none): A #UcaConfiguration object or %NULL. * * Create a plugin manager object to instantiate camera objects. * @@ -142,10 +158,9 @@ list_free_full (GList *list) /** * uca_plugin_manager_get_available_cameras: - * * @manager: A #UcaPluginManager * - * Returns: (element-type utf8) (transfer full): A list with strings of + * Return value: (element-type utf8) (transfer full): A list with strings of * available camera names. You have to free the individual strings with * g_list_foreach(list, (GFunc) g_free, NULL) and the list itself with * g_list_free. |