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.0b3/common/UCvsFiles.cpp (-2 / +2 lines)
Lines 1205-1211 Link Here
1205
{
1205
{
1206
	UStr uppath, filename;
1206
	UStr uppath, filename;
1207
	SplitPath(m_path, uppath, filename);
1207
	SplitPath(m_path, uppath, filename);
1208
	ResetView(uppath, true);
1208
	ResetView(uppath.c_str(), true);
1209
	return 0;
1209
	return 0;
1210
}
1210
}
1211
1211
Lines 1886-1892 Link Here
1886
	fullpath << (*data)[EntnodeData::kName];
1886
	fullpath << (*data)[EntnodeData::kName];
1887
	if(data->GetType() == ENT_SUBDIR)
1887
	if(data->GetType() == ENT_SUBDIR)
1888
	{
1888
	{
1889
		ResetView(fullpath, true);
1889
		ResetView(fullpath.c_str(), true);
1890
	}
1890
	}
1891
	else
1891
	else
1892
	{
1892
	{
(-)gcvs-1.0b3/common/UCvsFolders.cpp (-1 / +1 lines)
Lines 824-830 Link Here
824
		if(fileView != 0L)
824
		if(fileView != 0L)
825
		{
825
		{
826
			ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
826
			ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
827
			fileView->ResetView(path);
827
			fileView->ResetView(path.c_str());
828
		}
828
		}
829
	}
829
	}
830
830
(-)gcvs-1.0b3/cvsunix/configure (-1 / +5 lines)
Lines 399-405 Link Here
399
    if test "x$nonopt" != xNONE; then
399
    if test "x$nonopt" != xNONE; then
400
      { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
400
      { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
401
    fi
401
    fi
402
    nonopt="$ac_option"
402
    if test -n "`echo $ac_option| sed 's/=//g'`" ; then
403
      echo "configure: warning: $ac_option: probably should be environmental" 1>&2
404
    else
405
      nonopt="$ac_option"
406
    fi
403
    ;;
407
    ;;
404
408
405
  esac
409
  esac

Return to bug 53911