rename Song::GetShortFilename() to Song::GetName()

This commit is contained in:
unK
2008-09-25 20:18:16 +02:00
parent 25719527e9
commit 0d0e5e2912
6 changed files with 24 additions and 24 deletions

View File

@@ -42,7 +42,7 @@ class Song
~Song();
string GetFile() const;
string GetShortFilename() const;
string GetName() const;
string GetDirectory() const;
string GetArtist() const;
string GetTitle() const;
@@ -73,7 +73,7 @@ class Song
void SetComment(const string &str);
void SetPosition(int pos);
void SetNewName(string name) { itsNewName = name == GetShortFilename() ? "" : name; }
void SetNewName(string name) { itsNewName = name == GetName() ? "" : name; }
string GetNewName() const { return itsNewName; }
void NullMe() { itsSong = 0; }