summaryrefslogtreecommitdiff
path: root/live.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'live.cpp')
-rw-r--r--live.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/live.cpp b/live.cpp
index 88f4718..fd83cb4 100644
--- a/live.cpp
+++ b/live.cpp
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: live.cpp,v 1.6 2007/01/04 15:02:00 lordjaxom Exp $
+ * $Id: live.cpp,v 1.7 2007/01/04 17:42:33 lordjaxom Exp $
*/
#include <vdr/plugin.h>
@@ -20,8 +20,11 @@ using namespace std;
const char *Plugin::VERSION = "0.0.1";
const char *Plugin::DESCRIPTION = "Live Integrated VDR Environment";
+std::string Plugin::m_configDirectory;
+
Plugin::Plugin(void)
{
+ m_configDirectory = cPlugin::ConfigDirectory( PLUGIN_NAME_I18N );
}
const char *Plugin::CommandLineHelp(void)
@@ -45,6 +48,7 @@ bool Plugin::Start(void)
void Plugin::Stop(void)
{
+ m_thread->Stop();
}
void Plugin::MainThreadHook(void)