Add node monitoring for package link directories

This commit is contained in:
Ingo Weinhold 2011-06-24 13:36:49 +02:00
parent fd6d5d5a51
commit 83d5997db5
1 changed files with 6 additions and 0 deletions

View File

@ -642,6 +642,9 @@ void
Volume::PackageLinkDirectoryAdded(PackageLinkDirectory* directory)
{
_AddPackageLinksNode(directory);
notify_entry_created(ID(), directory->Parent()->ID(), directory->Name(),
directory->ID());
}
@ -649,6 +652,9 @@ void
Volume::PackageLinkDirectoryRemoved(PackageLinkDirectory* directory)
{
_RemovePackageLinksNode(directory);
notify_entry_removed(ID(), directory->Parent()->ID(), directory->Name(),
directory->ID());
}