commenting out an unused function which only throws deprecation warnings

This commit is contained in:
konstin
2014-07-24 18:55:06 +02:00
committed by Vincent Lejeune
parent 9ba19c7290
commit 47deab4614
2 changed files with 3 additions and 3 deletions

View File

@@ -244,11 +244,11 @@ DictionaryManager::add_directory(const std::string& pathname)
search_path.push_back(pathname);
}
void
/*void
DictionaryManager::set_filesystem(std::auto_ptr<FileSystem> filesystem_)
{
filesystem = filesystem_;
}
}*/
// ----------------------------------------------------------------------------
/** This function converts a .po filename (e.g. zh_TW.po) into a language
* specification (zh_TW). On case insensitive file systems (think windows)

View File

@@ -89,7 +89,7 @@ public:
/** Return a set of the available languages in their country code */
std::set<Language> get_languages();
void set_filesystem(std::auto_ptr<FileSystem> filesystem);
//void set_filesystem(std::auto_ptr<FileSystem> filesystem);
std::string convertFilename2Language(const std::string &s_in) const;