]> git.pld-linux.org Git - packages/gcvs.git/blob - gcvs-ambiguous.patch
- uhm, exceptions are used; but new gcc can generate rtti for them only where needed
[packages/gcvs.git] / gcvs-ambiguous.patch
1 diff -urN gcvs-1.0.orig/common/UCvsFiles.cpp gcvs-1.0/common/UCvsFiles.cpp
2 --- gcvs-1.0.orig/common/UCvsFiles.cpp  2002-08-13 13:46:40.000000000 +0200
3 +++ gcvs-1.0/common/UCvsFiles.cpp       2003-08-24 08:30:44.000000000 +0200
4 @@ -1214,7 +1214,7 @@
5  {
6         UStr uppath, filename;
7         SplitPath(m_path, uppath, filename);
8 -       ResetView(uppath, true);
9 +       ResetView((const char*)uppath, true);
10         return 0;
11  }
12  
13 @@ -1895,7 +1895,7 @@
14         fullpath << (*data)[EntnodeData::kName];
15         if(data->GetType() == ENT_SUBDIR)
16         {
17 -               ResetView(fullpath, true);
18 +               ResetView((const char*)fullpath, true);
19         }
20         else
21         {
22 diff -urN gcvs-1.0.orig/common/UCvsFolders.cpp gcvs-1.0/common/UCvsFolders.cpp
23 --- gcvs-1.0.orig/common/UCvsFolders.cpp        2002-08-02 17:05:02.000000000 +0200
24 +++ gcvs-1.0/common/UCvsFolders.cpp     2003-08-24 08:29:13.000000000 +0200
25 @@ -828,7 +828,7 @@
26                 if(fileView != 0L)
27                 {
28                         ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
29 -                       fileView->ResetView(path);
30 +                       fileView->ResetView((const char*)path);
31                 }
32         }
33  
This page took 0.119092 seconds and 3 git commands to generate.