added (another) missing const
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -243,7 +243,7 @@ CustomMacro::~CustomMacro()
|
|||||||
delete [] macroBody;
|
delete [] macroBody;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TexOutput(char *s, bool ordinaryText)
|
void TexOutput(const char *s, bool ordinaryText)
|
||||||
{
|
{
|
||||||
int len = strlen(s);
|
int len = strlen(s);
|
||||||
|
|
||||||
|
@@ -159,7 +159,7 @@ extern FILE *CurrentOutput2;
|
|||||||
void AddMacroDef(int the_id, const char *name, int n, bool ignore = FALSE, bool forbidden = FALSE);
|
void AddMacroDef(int the_id, const char *name, int n, bool ignore = FALSE, bool forbidden = FALSE);
|
||||||
void TexInitialize(int bufSize);
|
void TexInitialize(int bufSize);
|
||||||
void TexCleanUp(void);
|
void TexCleanUp(void);
|
||||||
void TexOutput(char *s, bool ordinaryText = FALSE);
|
void TexOutput(const char *s, bool ordinaryText = FALSE);
|
||||||
char *GetArgData(TexChunk *chunk);
|
char *GetArgData(TexChunk *chunk);
|
||||||
char *GetArgData(void); // Get the string for the current argument
|
char *GetArgData(void); // Get the string for the current argument
|
||||||
int GetNoArgs(void); // Get the number of arguments for the current macro
|
int GetNoArgs(void); // Get the number of arguments for the current macro
|
||||||
|
Reference in New Issue
Block a user