added a const_cast

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@257 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 1999-10-27 01:02:53 +00:00
parent 0bdf849ecd
commit aa4b36dd77
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,9 @@
1999-10-27 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/LyXAction.C (LookupFunc): added a workaround for sun
compiler, on the other hand...we don't know if the current code
compiles on sun at all...
* src/support/filetools.C (CleanupPath): subst fix
* src/insets/insetbib.C (delDatabase): subst fix, this looks

View File

@ -499,7 +499,7 @@ int LyXAction::retrieveActionArg(int i, char const** arg)
// Returns an action tag from a string.
int LyXAction::LookupFunc(char const *func)
int LyXAction::LookupFunc(char const * func)
{
if (!func)
return LFUN_UNKNOWN_ACTION;
@ -510,7 +510,9 @@ int LyXAction::LookupFunc(char const *func)
valid func table slot. RVDK_PATCH_5 */
int k, l= 0, r = funcCount;
int action = LFUN_UNKNOWN_ACTION;
char *arg = strchr(func, ' ');
char * arg = strchr(const_cast<char*>(func), ' '); // const cast to
// help a sun complier, will go away when this func is rewritten
// to use std::containers and std::string.
if (arg) *(arg++) = '\0';