mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-13 20:48:02 +01:00
fix compile warnings
This commit is contained in:
parent
4b293ac89b
commit
339e784d7c
3 changed files with 4 additions and 3 deletions
|
@ -676,9 +676,9 @@ destroyDicts( PlayerDicts* dicts )
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
uint32_t
|
uint32_t
|
||||||
andDictID( DictionaryCtxt* dict )
|
andDictID( const DictionaryCtxt* dict )
|
||||||
{
|
{
|
||||||
AndDictionaryCtxt* ctxt = (AndDictionaryCtxt*)dict;
|
const AndDictionaryCtxt* ctxt = (AndDictionaryCtxt*)dict;
|
||||||
return ctxt->dbgid;
|
return ctxt->dbgid;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -45,7 +45,7 @@ DictionaryCtxt* and_dictionary_make_empty( MPFORMAL JNIEnv *env,
|
||||||
jobject and_dictionary_getChars( JNIEnv* env, DictionaryCtxt* dict );
|
jobject and_dictionary_getChars( JNIEnv* env, DictionaryCtxt* dict );
|
||||||
|
|
||||||
# ifdef DEBUG
|
# ifdef DEBUG
|
||||||
uint32_t andDictID(DictionaryCtxt* dict);
|
uint32_t andDictID(const DictionaryCtxt* dict);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
#include "drawwrapper.h"
|
#include "drawwrapper.h"
|
||||||
#include "andutils.h"
|
#include "andutils.h"
|
||||||
|
#include "anddict.h"
|
||||||
#include "paths.h"
|
#include "paths.h"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
Loading…
Add table
Reference in a new issue