From 6bc09e80d10e85c96e4288c62b7cc491a5951050 Mon Sep 17 00:00:00 2001 From: Tomasz Pala Date: Sun, 24 Aug 2003 06:38:33 +0000 Subject: [PATCH] - choose explicity one function Changed files: gcvs-ambiguous.patch -> 1.1 --- gcvs-ambiguous.patch | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 gcvs-ambiguous.patch diff --git a/gcvs-ambiguous.patch b/gcvs-ambiguous.patch new file mode 100644 index 0000000..6814423 --- /dev/null +++ b/gcvs-ambiguous.patch @@ -0,0 +1,33 @@ +diff -urN gcvs-1.0.orig/common/UCvsFiles.cpp gcvs-1.0/common/UCvsFiles.cpp +--- gcvs-1.0.orig/common/UCvsFiles.cpp 2002-08-13 13:46:40.000000000 +0200 ++++ gcvs-1.0/common/UCvsFiles.cpp 2003-08-24 08:30:44.000000000 +0200 +@@ -1214,7 +1214,7 @@ + { + UStr uppath, filename; + SplitPath(m_path, uppath, filename); +- ResetView(uppath, true); ++ ResetView((const char*)uppath, true); + return 0; + } + +@@ -1895,7 +1895,7 @@ + fullpath << (*data)[EntnodeData::kName]; + if(data->GetType() == ENT_SUBDIR) + { +- ResetView(fullpath, true); ++ ResetView((const char*)fullpath, true); + } + else + { +diff -urN gcvs-1.0.orig/common/UCvsFolders.cpp gcvs-1.0/common/UCvsFolders.cpp +--- gcvs-1.0.orig/common/UCvsFolders.cpp 2002-08-02 17:05:02.000000000 +0200 ++++ gcvs-1.0/common/UCvsFolders.cpp 2003-08-24 08:29:13.000000000 +0200 +@@ -828,7 +828,7 @@ + if(fileView != 0L) + { + ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles))); +- fileView->ResetView(path); ++ fileView->ResetView((const char*)path); + } + } + -- 2.44.0