Missed a bunch of things removing Auto3...

Originally committed to SVN as r3200.
This commit is contained in:
Niels Martin Hansen 2009-07-23 00:49:54 +00:00
parent dbf0f48713
commit c52d45dd95
3 changed files with 0 additions and 14 deletions

View File

@ -43,7 +43,6 @@
#include "auto4_ruby.h"
#include "auto4_ruby_factory.h"
#include "auto4_auto3.h"
#include "ass_dialogue.h"
#include "ass_style.h"
#include "ass_file.h"

View File

@ -57,9 +57,6 @@ PluginManager::PluginManager() {
#ifdef WITH_PERL
perl = NULL;
#endif
#ifdef WITH_AUTO3
auto3 = NULL;
#endif
#ifdef WITH_RUBY
ruby = NULL;
#endif
@ -90,13 +87,6 @@ PluginManager::~PluginManager() {
perl = NULL;
}
#endif
#ifdef WITH_AUTO3
if (auto3) {
auto3->Unregister(auto3);
delete auto3;
auto3 = NULL;
}
#endif
#ifdef WITH_RUBY
if (ruby) {
ruby->Unregister(ruby);

View File

@ -59,9 +59,6 @@ private:
#ifdef WITH_PERL
Automation4::PerlScriptFactory *perl;
#endif
#ifdef WITH_AUTO3
Automation4::Auto3ScriptFactory *auto3;
#endif
#ifdef WITH_RUBY
Automation4::RubyScriptFactory *ruby;
#endif