blob: 5e3a1be42966a676b60cc3802113f39197b92970 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- common/UCvsFiles.cpp.orig Tue Aug 13 13:46:40 2002
+++ common/UCvsFiles.cpp Sun Aug 24 13:47:21 2003
@@ -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
{
|