aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-04-25 22:16:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-04-25 22:16:00 +0800
commitfaf1c14c11f3e6026f786e9587715c10b13c723e (patch)
tree3dbf5816532cbea2510b4438c7c40d91fc426d3a /filter
parent86fdd3a1cba7c156cfa127322e258f5636b45a99 (diff)
downloadgsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar.gz
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar.bz2
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar.lz
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar.xz
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.tar.zst
gsoc2013-evolution-faf1c14c11f3e6026f786e9587715c10b13c723e.zip
Manual conflict resolution
Diffstat (limited to 'filter')
-rw-r--r--filter/filter-option.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/filter/filter-option.c b/filter/filter-option.c
index 2e76eca1c3..3b93084d67 100644
--- a/filter/filter-option.c
+++ b/filter/filter-option.c
@@ -372,29 +372,6 @@ get_dynamic_options (FilterOption *fo)
return res;
}
-static GSList *
-get_dynamic_options (FilterOption *fo)
-{
- GModule *module;
- GSList *(*get_func)(void);
- GSList *res = NULL;
-
- if (!fo || !fo->dynamic_func)
- return res;
-
- module = g_module_open (NULL, G_MODULE_BIND_LAZY);
-
- if (g_module_symbol (module, fo->dynamic_func, (gpointer) &get_func)) {
- res = get_func ();
- } else {
- g_warning ("optionlist dynamic fill function '%s' not found", fo->dynamic_func);
- }
-
- g_module_close (module);
-
- return res;
-}
-
static GtkWidget *
get_widget (FilterElement *fe)
{