Applying scope to constructors when the scope is the class itself is

From: Erik Hovland <erik@hovland.org>

dangerous territory for the C++ standard. That scoping should be
avoided. Use only the ctor itself like a function.
---

 libs/libmyth/mythmediamonitor.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libs/libmyth/mythmediamonitor.cpp b/libs/libmyth/mythmediamonitor.cpp
index 2f1a70d..6fe8fd2 100644
--- a/libs/libmyth/mythmediamonitor.cpp
+++ b/libs/libmyth/mythmediamonitor.cpp
@@ -270,7 +270,7 @@ MediaMonitor::MediaMonitor(QObject* par, unsigned long interval,
     if (ignore.length())
         m_IgnoreList = QStringList::split(',', ignore);
     else
-        m_IgnoreList = QStringList::QStringList();  // Force empty list
+        m_IgnoreList = QStringList();  // Force empty list
 
     if (m_StartThread)
         VERBOSE(VB_MEDIA, "Creating MediaMonitor, SendEvents="
