1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

fixed compilation problem

git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@158 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Nikolay Pultsin 2007-11-17 01:33:46 +00:00
parent 13bf388aea
commit 00bbfa3e9c
2 changed files with 4 additions and 2 deletions

View file

@ -12,7 +12,9 @@
</target> </target>
<target name = "compile" depends = "prepare"> <target name = "compile" depends = "prepare">
<javac srcdir = "${src.dir}" destdir = "${bin.dir}"/> <javac srcdir = "${src.dir}" destdir = "${bin.dir}">
<exclude name = "org/zlibrary/ui/android/**"/>
</javac>
</target> </target>
<target name = "buildJar" depends = "compile"> <target name = "buildJar" depends = "compile">

View file

@ -9,7 +9,7 @@ import org.zlibrary.options.config.writer.ZLConfigWriterFactory;
import org.zlibrary.ui.swing.view.ZLSwingPaintContext; import org.zlibrary.ui.swing.view.ZLSwingPaintContext;
import org.zlibrary.ui.swing.application.ZLSwingApplicationWindow; import org.zlibrary.ui.swing.application.ZLSwingApplicationWindow;
class ZLSwingLibrary extends ZLibrary { public class ZLSwingLibrary extends ZLibrary {
public ZLSwingPaintContext createPaintContext() { public ZLSwingPaintContext createPaintContext() {
return new ZLSwingPaintContext(); return new ZLSwingPaintContext();
} }