Renamed FilesystemNode -> FSNode

svn-id: r34716
This commit is contained in:
Max Horn 2008-10-02 16:58:59 +00:00
parent 31be8a6b3f
commit c7fde102e3
87 changed files with 435 additions and 434 deletions

View file

@ -97,11 +97,11 @@ public:
};
Plugin* Win32PluginProvider::createPlugin(const Common::FilesystemNode &node) const {
Plugin* Win32PluginProvider::createPlugin(const Common::FSNode &node) const {
return new Win32Plugin(node.getPath());
}
bool Win32PluginProvider::isPluginFilename(const Common::FilesystemNode &node) const {
bool Win32PluginProvider::isPluginFilename(const Common::FSNode &node) const {
// Check the plugin suffix
Common::String filename = node.getName();
if (!filename.hasSuffix(".dll"))