Hi Daniel,

readonly access to CVS is available with CVSROOT:
:pserver:[EMAIL PROTECTED]:/cvsroot/technology 

password is "anonymous".

Regards,
Richard.

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Daniel Migowski
Sent: Thursday, December 20, 2007 10:09 PM
To: [email protected]
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: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>
 |  | // |  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
[email protected]
https://dev.eclipse.org/mailman/listinfo/nebula-dev

_______________________________________________
nebula-dev mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/nebula-dev

Reply via email to