a5ab318dce
* gcvs 1.0b2 - callback.[ch], interface.[ch] and support.[ch] will be created automaticaly if gcvs.glade is newer - add debug statement to check what envirment cvs gets (activated by -DqCvsDebug=1) * gcvs 1.0b2 - fixed Bug #507525 - fixed memory leaks while changing enviroment - updated INSTALL file for using CVSGUI111 branch - project- and spec-file updated to new beta * gcvs 1.0b1: - add forgotton headers to makefiles for building distribution - update project file and version-strings Makes the package build with gcc3.
22 lines
587 B
Text
22 lines
587 B
Text
$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
|
|
{
|