Subversion Repositories spk

Rev

Rev 206 | Rev 218 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 206 Rev 214
Line 359... Line 359...
359
	{
359
	{
360
		printf ( "\nError! Some packages are missing dependacies:\n" );
360
		printf ( "\nError! Some packages are missing dependacies:\n" );
361
		for ( CListNode<CBaseFile> *pNode = lCheckPackages.Front(); pNode; pNode = pNode->next() )
361
		for ( CListNode<CBaseFile> *pNode = lCheckPackages.Front(); pNode; pNode = pNode->next() )
362
		{
362
		{
363
			CSpkFile *spk = (CSpkFile *)pNode->Data();
363
			CSpkFile *spk = (CSpkFile *)pNode->Data();
364
			wprintf(L"\t%s V%s by %s (Requires: %hs by %hs)\n", spk->name(packages->GetLanguage()).c_str(), spk->version().c_str(), spk->author().c_str(), spk->GetOtherName().c_str(), spk->GetOtherAuthor().c_str());
364
			wprintf(L"\t%s V%s by %s (Requires: %s by %s)\n", spk->name(packages->GetLanguage()).c_str(), spk->version().c_str(), spk->author().c_str(), spk->otherName().c_str(), spk->otherAuthor().c_str());
365
		}
365
		}
366
	}
366
	}
367
 
367
 
368
	// no packages will be installed
368
	// no packages will be installed
369
	if ( packages->GetNumPackagesInQueue() < 1 )
369
	if ( packages->GetNumPackagesInQueue() < 1 )