]> git.pld-linux.org Git - packages/gcvs.git/commitdiff
- choose explicity one function
authorTomasz Pala <gotar@pld-linux.org>
Sun, 24 Aug 2003 06:38:33 +0000 (06:38 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gcvs-ambiguous.patch -> 1.1

gcvs-ambiguous.patch [new file with mode: 0644]

diff --git a/gcvs-ambiguous.patch b/gcvs-ambiguous.patch
new file mode 100644 (file)
index 0000000..6814423
--- /dev/null
@@ -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);
+               }
+       }
This page took 0.100301 seconds and 4 git commands to generate.