]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/theme_repository.cpp
utf8_* -> vlc_* (sed roxxors)
[vlc] / modules / gui / skins2 / src / theme_repository.cpp
index 8b150f6fc9298122a43196bbc550629df4dc9bee..06199e4539b686c1974b820b24bad7122e187642 100644 (file)
@@ -142,7 +142,7 @@ void ThemeRepository::parseDirectory( const string &rDir_locale )
     // Open the dir
     // FIXME: parseDirectory should be invoked with UTF-8 input instead!!
     string rDir = sFromLocale( rDir_locale );
-    pDir = utf8_opendir( rDir.c_str() );
+    pDir = vlc_opendir( rDir.c_str() );
 
     if( pDir == NULL )
     {
@@ -152,7 +152,7 @@ void ThemeRepository::parseDirectory( const string &rDir_locale )
     }
 
     // While we still have entries in the directory
-    while( ( pszDirContent = utf8_readdir( pDir ) ) != NULL )
+    while( ( pszDirContent = vlc_readdir( pDir ) ) != NULL )
     {
         string name = pszDirContent;
         string extension;