Kaydet (Commit) 4829d41c authored tarafından jan Iversen's avatar jan Iversen

iOS, make gendict.cxx compile

it is not possible to take the address directly of OUString variables.

Change-Id: I8e31494523f4ec186de81aa065f03d7fb2ef475d
üst 0c1532c6
......@@ -146,7 +146,8 @@ static inline void printDataArea(FILE *dictionary_fp, FILE *source_fp, vector<sa
if ((lenArrayCurr & 0x0f) == 0x0f)
fputs("\n\t", source_fp);
#else
fwrite(&Ostr[i], sizeof(Ostr[i]), 1, source_fp);
sal_Unicode x = Ostr[i];
fwrite(&x, sizeof(Ostr[i]), 1, source_fp);
#endif
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment