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