File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ class CFileItem
2929{
3030 CStringW m_fpath;
3131 CStringW m_title;
32- CStringA m_urlext;
3332 ChaptersList m_chapters;
3433
3534 REFERENCE_TIME m_duration = 0 ;
@@ -96,15 +95,6 @@ class CFileItem
9695 return m_title;
9796 };
9897
99- void SetUrlExt (const CHAR * urlext) {
100- ASSERT (::PathIsURLW (m_fpath));
101- m_urlext = urlext;
102- }
103-
104- const CStringA& GetUrlExt () const {
105- return m_urlext;
106- };
107-
10898 // Chapters
10999 template <class ... Args>
110100 void AddChapter (Args&&... args) {
@@ -138,7 +128,6 @@ class CExtraFileItem
138128 CStringW m_fpath;
139129 CStringW m_title;
140130 CStringA m_lang;
141- CStringA m_urlext;
142131
143132public:
144133 CExtraFileItem () = default ;
@@ -182,15 +171,6 @@ class CExtraFileItem
182171 const CStringA& GetLang () const {
183172 return m_lang;
184173 };
185-
186- void SetUrlExt (const CHAR * urlext) {
187- ASSERT (::PathIsURLW (m_fpath));
188- m_urlext = urlext;
189- }
190-
191- const CStringA& GetUrlExt () const {
192- return m_urlext;
193- };
194174};
195175
196176using CAudioItemList = std::list<CExtraFileItem>;
You can’t perform that action at this time.
0 commit comments