Hi Johan,
Unfortunately its still broken. I'm not sure what is going on here; it
builds happily in Eclipse with JDK1.4 but not with Ant with the very same
copy of the JDK. Gives the following error:
[javac] D:\src\squirrel-sql\squirrel-sql\fw\src\net\sourceforge\squirrel_sql
\fw\datasetviewer\DataSetViewerTablePanel.java:157: cannot reference this
before
supertype constructor has been called
[javac] super(new SortableTableModel(new
MyTableModel())
);
I don't understand why it builds in Eclipse but not in Ant.
Anyway heres another patch. Now builds in both. Could you please apply this
one to CVS as well.
I can't generate a diff because my CVS client now won't load. Definitely
time to rebuild this PC.
You need to make the following changes to DataSetViewerTablePanel:
Add
private ColumnDisplayDefinition[] _colDefs = new
ColumnDisplayDefinition[0];
to MyTableModel
and replace
private final class MyTableModel extends AbstractTableModel {
with
private final static class MyTableModel extends AbstractTableModel {
As well my build scripts don't take .png files into account.
In /squirrel-sql/build/build.xml could you add the line
<include name="**/*.png"/>
after both occurences of
<include name="**/*.jpeg"/>
They're in the targets compile_app and compile_fw.
Thanks
Col
-----Original Message-----
From: Johan Compagner [mailto:jco...@j-...]
Sent: Thursday, 14 March 2002 9:26
To: squ...@li...
Subject: Re: [Squirrel-sql-develop] Something changed over weekend to
break build?
Fixed,
also fixed 2 other bugs:
Sorting on a column that is moved doesn't work
Displaying the value of a moved column doesn't work
for both cases : it uses the values of the column that is now under that
old position.
johan
----- Original Message -----
From: "Colin Bell" <Col...@as...>
To: "'BradLyon'" <bra...@nt...>;
<squ...@li...>
Sent: Wednesday, March 13, 2002 10:54 PM
Subject: RE: [Squirrel-sql-develop] Something changed over weekend to break
build?
> Brad,
>
> Just apply the attached diff to your copy of
>
fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/DataSetViewerTablePanel
> .java and the build should work.
>
>
> Johan,
>
> Sorry, I gave you a bum steer on the fix for the build, its a lot simpler
> than what I said. Could you apply the attached diff to the CVS on
> SourceForge. Its going to be a couple of days till I can get SSH access to
> SF.
>
> Thanks
> Col
>
>
> -----Original Message-----
> From: BradLyon [mailto:bra...@nt...]
> Sent: Thursday, 14 March 2002 7:50
> To: squ...@li...
> Subject: [Squirrel-sql-develop] Something changed over weekend to break
> build?
>
>
> I did a quick test build after Johan checked things in this past weekend,
> and it didn't work. I haven't looked into detail yet, but I know it was
> building before that. Did anything else change that I need?
>
> _______________________________________________
> Squirrel-sql-develop mailing list
> Squ...@li...
> https://lists.sourceforge.net/lists/listinfo/squirrel-sql-develop
>
>
_______________________________________________
Squirrel-sql-develop mailing list
Squ...@li...
https://lists.sourceforge.net/lists/listinfo/squirrel-sql-develop
|