Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 8331 | Differences between
and this patch

Collapse All | Expand All

(-)gcvs-1.0.org/common/UCvsFiles.cpp (-2 / +2 lines)
Lines 1214-1220 int UCvsFiles::OnCmdUpone(void) Link Here
1214
{
1214
{
1215
	UStr uppath, filename;
1215
	UStr uppath, filename;
1216
	SplitPath(m_path, uppath, filename);
1216
	SplitPath(m_path, uppath, filename);
1217
	ResetView(uppath, true);
1217
	ResetView((const char*)uppath, true);
1218
	return 0;
1218
	return 0;
1219
}
1219
}
1220
1220
Lines 1895-1901 void UCvsFiles::EditSel(EntnodeData *dat Link Here
1895
	fullpath << (*data)[EntnodeData::kName];
1895
	fullpath << (*data)[EntnodeData::kName];
1896
	if(data->GetType() == ENT_SUBDIR)
1896
	if(data->GetType() == ENT_SUBDIR)
1897
	{
1897
	{
1898
		ResetView(fullpath, true);
1898
		ResetView((const char*)fullpath, true);
1899
	}
1899
	}
1900
	else
1900
	else
1901
	{
1901
	{
(-)gcvs-1.0.org/common/UCvsFolders.cpp (-1 / +1 lines)
Lines 828-834 void UCvsFolders::OnTreeSelecting(int de Link Here
828
		if(fileView != 0L)
828
		if(fileView != 0L)
829
		{
829
		{
830
			ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
830
			ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
831
			fileView->ResetView(path);
831
			fileView->ResetView((const char*)path);
832
		}
832
		}
833
	}
833
	}
834
834

Return to bug 8331