diff options
author | David Reveman <davidr@novell.com> | 2007-07-12 22:23:31 -0400 |
---|---|---|
committer | David Reveman <davidr@novell.com> | 2007-07-12 22:23:31 -0400 |
commit | fafab11381ed441ae3858b21294947a1a0ab45a0 (patch) | |
tree | 0e85a4cf08d3c0cb2ab7925e5832ab25f0a0d823 /plugins/minimize.c | |
parent | 062c880506f4cc088c6ef3c90a0c2818ab6e9517 (diff) |
Remove features and dependencies from plugin VTable.
Diffstat (limited to 'plugins/minimize.c')
-rw-r--r-- | plugins/minimize.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/minimize.c b/plugins/minimize.c index 4b8ee686..bf01f676 100644 --- a/plugins/minimize.c +++ b/plugins/minimize.c @@ -1014,11 +1014,6 @@ minGetMetadata (CompPlugin *plugin) return &minMetadata; } -CompPluginDep minDeps[] = { - { CompPluginRuleBefore, "cube" }, - { CompPluginRuleBefore, "scale" } -}; - static CompPluginVTable minVTable = { "minimize", minGetVersion, @@ -1034,11 +1029,7 @@ static CompPluginVTable minVTable = { 0, /* GetDisplayOptions */ 0, /* SetDisplayOption */ minGetScreenOptions, - minSetScreenOption, - minDeps, - sizeof (minDeps) / sizeof (minDeps[0]), - 0, /* Features */ - 0 /* nFeatures */ + minSetScreenOption }; CompPluginVTable * |