23 lines
587 B
Plaintext
23 lines
587 B
Plaintext
$NetBSD: patch-af,v 1.1 2004/09/08 16:21:53 wiz Exp $
|
|
|
|
--- common/UCvsFiles.cpp.orig 2002-08-13 13:46:40.000000000 +0200
|
|
+++ common/UCvsFiles.cpp
|
|
@@ -1214,7 +1214,7 @@ int UCvsFiles::OnCmdUpone(void)
|
|
{
|
|
UStr uppath, filename;
|
|
SplitPath(m_path, uppath, filename);
|
|
- ResetView(uppath, true);
|
|
+ ResetView((const char *)uppath, true);
|
|
return 0;
|
|
}
|
|
|
|
@@ -1895,7 +1895,7 @@ void UCvsFiles::EditSel(EntnodeData *dat
|
|
fullpath << (*data)[EntnodeData::kName];
|
|
if(data->GetType() == ENT_SUBDIR)
|
|
{
|
|
- ResetView(fullpath, true);
|
|
+ ResetView((const char *)fullpath, true);
|
|
}
|
|
else
|
|
{
|