customdrawn-android: Improves a little the debug info

git-svn-id: trunk@33911 -
This commit is contained in:
sekelsenmat 2011-12-02 18:14:27 +00:00
parent 6ac5285035
commit a736fd742e
2 changed files with 2 additions and 2 deletions

View File

@ -111,6 +111,7 @@ end;
function Java_com_pascal_lclproject_LCLActivity_LCLOnCreate(
env:PJNIEnv; this:jobject; alclactivity: jobject): jint; cdecl;
begin
__android_log_write(ANDROID_LOG_INFO, 'lclapp', 'LCLOnCreate called by LCLActivity.onCreate');
Result := 0;
javaActivityObject := alclactivity;
end;
@ -173,6 +174,7 @@ begin
javaMethod_LCLDoGetTextBounds := javaEnvRef^^.GetMethodID(javaEnvRef, javaActivityClass, 'LCLDoGetTextBounds', '()V');
javaMethod_LCLDoDrawText := javaEnvRef^^.GetMethodID(javaEnvRef, javaActivityClass, 'LCLDoDrawText', '()V');
__android_log_write(ANDROID_LOG_INFO, 'lclapp', 'JNI_OnLoad finished');
result:=JNI_VERSION_1_4;// 1_6 is another option
end;

View File

@ -2174,8 +2174,6 @@ end;*)
Function: ExtTextOut
Params: none
Returns: Nothing
------------------------------------------------------------------------------}
function TCDWidgetSet.ExtTextOut(DC: HDC; X, Y: Integer; Options: Longint;
Rect: PRect; Str: PChar; Count: Longint; Dx: PInteger): Boolean;