Skip to content

Commit

Permalink
Fixed: Build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Oct 26, 2016
1 parent 69e481b commit 9c9e5e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/apps/libdoomsday/src/resource/doomsdaypackage.cpp
Expand Up @@ -45,7 +45,7 @@ String DoomsdayPackage::defsPath() const
return _pkg.objectNamespace().gets(PACKAGE_DEFS_PATH, "");
}

Uri DoomsdayPackage::loadableUri() const
de::Uri DoomsdayPackage::loadableUri() const
{
return loadableUri(_pkg.file());
}
Expand All @@ -60,13 +60,13 @@ String DoomsdayPackage::defsPath(File const &packageFile) // static
return packageFile.objectNamespace().gets(PACKAGE_DEFS_PATH, "");
}

Uri DoomsdayPackage::loadableUri(File const &packageFile) // static
de::Uri DoomsdayPackage::loadableUri(File const &packageFile) // static
{
if (NativeFile const *nativeSrc = packageFile.source()->maybeAs<NativeFile>())
{
return Uri::fromNativePath(nativeSrc->nativePath());
return de::Uri::fromNativePath(nativeSrc->nativePath());
}
return Uri();
return de::Uri();
}

} // namespace res

0 comments on commit 9c9e5e2

Please sign in to comment.