|
List Info
Thread: Re: Bugfix (Daniel Migowski)
|
|
| Re: Bugfix (Daniel Migowski) |

|
2007-12-30 12:01:50 |
|
I just returned from holiday.
Thanks for your patch! I saw you put in Bugzilla too; thanks for that too.
Best regards,
Dave Orme ----- Original Message ----- From: nebula-dev-request eclipse.org To: nebula-dev eclipse.org Sent: Friday, December 21, 2007 3:32:15 AM GMT-0600 Subject: nebula-dev Digest, Vol 20, Issue 10
Send nebula-dev mailing list submissions to nebula-dev eclipse.org
To subscribe or unsubscribe via the World Wide Web, visit https://dev.eclipse.org/mailman/listinfo/nebula-dev or, via email, send a message with subject or body 'help' to nebula-dev-request eclipse.org
You can reach the person managing the list at nebula-dev-owner eclipse.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of nebula-dev digest..."
Today's Topics:
1. Bugfix (Daniel Migowski) 2. RE: Bugfix (Kr?l?k) 3. Re: Bugfix (Roland Tepp)
----------------------------------------------------------------------
Message: 1 Date: Thu, 20 Dec 2007 22:08:40 +0100 From: Daniel Migowski <dmigowski ikoffice.de> Subject: [nebula-dev] Bugfix To: nebula-dev eclipse.org Message-ID: <476AD9D8.2010509 ikoffice.de> Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Bugdesscription: In some Example Snippets (like CompositeTabelSnippet2) scrolling was not passible anymore. This Fix resolves the issue.
In InternalCompositeTable.java - Line 1147, please replace
int delta = topRow - vSlider.getSelection(); int oldCurrentRow = currentRow; currentRow += delta;
with
int oldCurrentRow = currentRow; currentRow = vSlider.getSelection();
After this fix all the examples can be scrolled without crashing. I am using SWT 3.3.
With best regards, Daniel Migowski
PS: How can I get at least readonly CVS access to this project? If I had i could easily create patches. --
|��|��| *IKOffice GmbH Daniel Migowski* | | |/| Mail: dmigowski ikoffice.de <mailto:dmigowski ikoffice.de> | | // | Nordstr. 10 Tel.: +49 (441) 21 98 89 52 | | \ | 26135 Oldenburg Fax.: +49 (441) 21 98 89 55 |__|__|| http://www.ikoffice.de Mob.: +49 (176) 22 31 20 76 Gesch�ftsf�hrer: Ingo Kuhlmann, Daniel Migowski Amtsgericht Oldenburg, HRB 201467 Steuernummer: 64/211/01864
------------------------------
Message: 2 Date: Fri, 21 Dec 2007 10:17:50 +0100 From: Kr?l?k <kralikX seznam.cz> Subject: RE: [nebula-dev] Bugfix To: "'Nebula Dev'" <nebula-dev eclipse.org> Message-ID: <20071221091758.E0D3313F0AF mail.eclipse.org> Content-Type: text/plain; charset="iso-8859-1"
Hi Daniel,
readonly access to CVS is available with CVSROOT: :pserver:anonymous dev.eclipse.org:/cvsroot/technology
password is "anonymous".
Regards, Richard.
-----Original Message----- From: nebula-dev-bounces eclipse.org [mailto:nebula-dev-bounces eclipse.org] On Behalf Of Daniel Migowski Sent: Thursday, December 20, 2007 10:09 PM To: nebula-dev eclipse.org Subject: [nebula-dev] Bugfix
Bugdesscription: In some Example Snippets (like CompositeTabelSnippet2) scrolling was not passible anymore. This Fix resolves the issue.
In InternalCompositeTable.java - Line 1147, please replace
int delta = topRow - vSlider.getSelection(); int oldCurrentRow = currentRow; currentRow += delta;
with
int oldCurrentRow = currentRow; currentRow = vSlider.getSelection();
After this fix all the examples can be scrolled without crashing. I am using SWT 3.3.
With best regards, Daniel Migowski
PS: How can I get at least readonly CVS access to this project? If I had i could easily create patches. --
|��|��| *IKOffice GmbH Daniel Migowski* | | |/| Mail: dmigowski ikoffice.de <mailto:dmigowski ikoffice.de> | | // | Nordstr. 10 Tel.: +49 (441) 21 98 89 52 | | \ | 26135 Oldenburg Fax.: +49 (441) 21 98 89 55 |__|__|| http://www.ikoffice.de Mob.: +49 (176) 22 31 20 76 Gesch�ftsf�hrer: Ingo Kuhlmann, Daniel Migowski Amtsgericht Oldenburg, HRB 201467 Steuernummer: 64/211/01864
_______________________________________________ nebula-dev mailing list nebula-dev eclipse.org https://dev.eclipse.org/mailman/listinfo/nebula-dev
| |