예제 #1
0
ASYNC RemoteDirNotify::FilesChanged(const KURL::List &fileList)
{
	kdDebug(1220) << "RemoteDirNotify::FilesChanged" << endl;
	
	KURL::List new_list = toRemoteURLList(fileList);

	if (!new_list.isEmpty())
	{
		//KDirNotify_stub notifier("*", "*");
		//notifier.FilesChanged( new_list );
		evil_hack(new_list);
	}
}
예제 #2
0
ASYNC HomeDirNotify::FilesRemoved(const KURL::List &fileList)
{
    kdDebug() << "HomeDirNotify::FilesRemoved" << endl;

    KURL::List new_list = toHomeURLList(fileList);

    if(!new_list.isEmpty())
    {
        // KDirNotify_stub notifier("*", "*");
        // notifier.FilesRemoved( new_list );
        evil_hack(new_list);
    }
}