aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-11-18 01:50:43 +0000
committerjmarshallnz <jmarshallnz@svn>2010-11-18 01:50:43 +0000
commit37f632b4776ed1f1948734d7c0c78c86c85bd358 (patch)
tree1463ab9d1f0755070a3186bafe1d4a8d8864b55c
parentaa06e2ec11b1c3044d6c94d53867df3fd4686a83 (diff)
fixed: Build issue on dharma
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35323 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r--xbmc/GUIWindowVideoBase.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/xbmc/GUIWindowVideoBase.cpp b/xbmc/GUIWindowVideoBase.cpp
index efe988ae63..a231728092 100644
--- a/xbmc/GUIWindowVideoBase.cpp
+++ b/xbmc/GUIWindowVideoBase.cpp
@@ -29,6 +29,7 @@
#include "addons/IAddon.h"
#include "GUIWindowVideoInfo.h"
#include "GUIWindowVideoNav.h"
+#include "GUIWindowVideoFiles.h"
#include "GUIDialogFileBrowser.h"
#include "GUIDialogVideoScan.h"
#include "GUIDialogSmartPlaylistEditor.h"
@@ -956,10 +957,7 @@ bool CGUIWindowVideoBase::OnInfo(int iItem)
if (pDialog && pDialog->IsScanning())
return true;
- CStdString strOldPath = item->m_strPath;
- item->m_strPath = strDir;
- OnAssignContent(iItem,1, scraper, settings);
- item->m_strPath = strOldPath;
+ CGUIWindowVideoFiles::OnAssignContent(strDir,1, scraper, settings);
return true;
}