diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-05-29 23:57:58 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-05-30 00:02:18 +0300 |
commit | c9f5b8a33434266c025d546eeb4c11f49fad8570 (patch) | |
tree | a1af60159c87cf4e97231e75f67c3c836ce5c104 /vcl | |
parent | a9a0ed1edc6452560a6e8985f5a33f09859af977 (diff) |
Add temporary test JNI method createWindowFoo()...
Change-Id: I8f99399faa3b0762bdea2aac09f1b849639cd191
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/wrkwin.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vcl/source/window/wrkwin.cxx b/vcl/source/window/wrkwin.cxx index 64381456db48..a4f79d29ee32 100644 --- a/vcl/source/window/wrkwin.cxx +++ b/vcl/source/window/wrkwin.cxx @@ -107,6 +107,16 @@ WorkWindow::WorkWindow( WindowType nType ) : ImplInitWorkWindowData(); } +#ifdef ANDROID + +extern "C" void * +createWindowFoo(void) +{ + return (void*) new WorkWindow((Window *)NULL); +} + +#endif + // ----------------------------------------------------------------------- WorkWindow::WorkWindow( Window* pParent, WinBits nStyle ) : |