mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
Synchronize window titles
This commit is contained in:
parent
2e9f3cc857
commit
b8206f9f13
|
@ -199,6 +199,16 @@
|
|||
return song;
|
||||
}
|
||||
|
||||
- (void) setSongTitle:(NSString *)newTitle
|
||||
{
|
||||
if (newTitle != songTitle) {
|
||||
[songTitle release];
|
||||
songTitle = [newTitle retain];
|
||||
}
|
||||
[[self windowControllers] makeObjectsPerformSelector:
|
||||
@selector(synchronizeWindowTitleWithDocumentName)];
|
||||
}
|
||||
|
||||
- (NSNumber *) songKey
|
||||
{
|
||||
const VLProperties & prop = song->fProperties.front();
|
||||
|
|
Loading…
Reference in New Issue
Block a user