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

Collapse All | Expand All

(-)gcvs-1.0.orig/cvsunix/configure (+3 lines)
Lines 392-397 Link Here
392
  -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
392
  -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
393
    ;;
393
    ;;
394
394
395
  *=*)
396
  ;;
397
395
  *)
398
  *)
396
    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
399
    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
397
      echo "configure: warning: $ac_option: invalid host type" 1>&2
400
      echo "configure: warning: $ac_option: invalid host type" 1>&2
(-)gcvs-1.0.orig/common/UCvsFolders.cpp (-1 / +1 lines)
Lines 828-834 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(&path);
832
		}
832
		}
833
	}
833
	}
834
834
(-)gcvs-1.0.orig/common/UCvsFiles.cpp (-2 / +2 lines)
Lines 1214-1220 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(&uppath, true);
1218
	return 0;
1218
	return 0;
1219
}
1219
}
1220
1220
Lines 1895-1901 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(&fullpath, true);
1899
	}
1899
	}
1900
	else
1900
	else
1901
	{
1901
	{

Return to bug 53911