[DEV] android compilation correction
This commit is contained in:
parent
079a376acf
commit
f3b3967b1e
2
build
2
build
@ -1 +1 @@
|
||||
Subproject commit 47c1762724759b107ea98eb6cf86c10c65d7ae79
|
||||
Subproject commit 99c6c86d9e0bf78897d8a954274f45df0606189f
|
2
external/etk
vendored
2
external/etk
vendored
@ -1 +1 @@
|
||||
Subproject commit 4f25fd3ddc690dc066d81b601b9287c260a447fe
|
||||
Subproject commit a130375b478f0d622f8205d0537af530d00b131b
|
@ -320,9 +320,8 @@ class AndroidContext : public ewol::eContext {
|
||||
if(!java_attach_current_thread(&status)) {
|
||||
return;
|
||||
}
|
||||
etk::Char tmpChar = _title.c_str();
|
||||
//Call java ...
|
||||
jstring title = m_JavaVirtualMachinePointer->NewStringUTF(tmpChar);
|
||||
jstring title = m_JavaVirtualMachinePointer->NewStringUTF(_title.c_str());
|
||||
m_JavaVirtualMachinePointer->CallVoidMethod(m_javaObjectEwolCallback, m_javaMethodEwolActivitySetTitle, title);
|
||||
m_JavaVirtualMachinePointer->DeleteLocalRef(title);
|
||||
// manage execption :
|
||||
|
@ -75,7 +75,7 @@ namespace ewol {
|
||||
|
||||
};
|
||||
float kerningGet(const char32_t _charcode) {
|
||||
for(esize_t iii=0; iii<m_kerning.size(); iii++ ) {
|
||||
for(size_t iii=0; iii<m_kerning.size(); iii++ ) {
|
||||
if (m_kerning[iii].m_UVal == _charcode) {
|
||||
return m_kerning[iii].m_value;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user