Working on switching to std::string.

This commit is contained in:
Ben Vanik
2014-08-16 02:30:23 -07:00
parent 01f0b14250
commit a4dfc23abc
34 changed files with 211 additions and 250 deletions

View File

@@ -29,15 +29,15 @@ DiscImageFile::DiscImageFile(
DiscImageFile::~DiscImageFile() {
}
const char* DiscImageFile::path(void) const {
const std::string& DiscImageFile::path() const {
return entry_->path();
}
const char* DiscImageFile::absolute_path(void) const {
const std::string& DiscImageFile::absolute_path() const {
return entry_->absolute_path();
}
const char* DiscImageFile::name(void) const {
const std::string& DiscImageFile::name() const {
return entry_->name();
}