mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
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:
parent
0bdf849ecd
commit
aa4b36dd77
@ -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
|
||||
|
@ -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';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user