From c52d45dd95666b4b2a3b6a22d9f40244760d57bf Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Thu, 23 Jul 2009 00:49:54 +0000 Subject: [PATCH] Missed a bunch of things removing Auto3... Originally committed to SVN as r3200. --- aegisub/src/auto4_ruby.cpp | 1 - aegisub/src/plugin_manager.cpp | 10 ---------- aegisub/src/plugin_manager.h | 3 --- 3 files changed, 14 deletions(-) diff --git a/aegisub/src/auto4_ruby.cpp b/aegisub/src/auto4_ruby.cpp index af9e982d3..15d846975 100644 --- a/aegisub/src/auto4_ruby.cpp +++ b/aegisub/src/auto4_ruby.cpp @@ -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" diff --git a/aegisub/src/plugin_manager.cpp b/aegisub/src/plugin_manager.cpp index ea8ac3036..9feac3ef7 100644 --- a/aegisub/src/plugin_manager.cpp +++ b/aegisub/src/plugin_manager.cpp @@ -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); diff --git a/aegisub/src/plugin_manager.h b/aegisub/src/plugin_manager.h index 312fe248e..c7af3b352 100644 --- a/aegisub/src/plugin_manager.h +++ b/aegisub/src/plugin_manager.h @@ -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