Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[nebula-dev] Re: Bugfix (Daniel Migowski)

Hi Daniel,

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@xxxxxxxxxxx
To: nebula-dev@xxxxxxxxxxx
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@xxxxxxxxxxx

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@xxxxxxxxxxx

You can reach the person managing the list at
        nebula-dev-owner@xxxxxxxxxxx

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@xxxxxxxxxxx>
Subject: [nebula-dev] Bugfix
To: nebula-dev@xxxxxxxxxxx
Message-ID: <476AD9D8.2010509@xxxxxxxxxxx>
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@xxxxxxxxxxx <mailto:dmigowski@xxxxxxxxxxx>
 |  | // |  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@xxxxxxxxx>
Subject: RE: [nebula-dev] Bugfix
To: "'Nebula Dev'" <nebula-dev@xxxxxxxxxxx>
Message-ID: <20071221091758.E0D3313F0AF@xxxxxxxxxxxxxxxx>
Content-Type: text/plain;        charset="iso-8859-1"

Hi Daniel,

readonly access to CVS is available with CVSROOT:
:pserver:anonymous@xxxxxxxxxxxxxxx:/cvsroot/technology

password is "anonymous".

Regards,
Richard.

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



------------------------------

Message: 3
Date: Fri, 21 Dec 2007 11:32:16 +0200
From: Roland Tepp <roland@xxxxxxxxxxxx>
Subject: Re: [nebula-dev] Bugfix
To: Nebula Dev <nebula-dev@xxxxxxxxxxx>
Message-ID: <476B8820.6030200@xxxxxxxxxxxx>
Content-Type: text/plain; charset="utf-8"

Skipped content of type multipart/mixed-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 4675 bytes
Desc: S/MIME Cryptographic Signature
Url : https://dev.eclipse.org/mailman/listinfo/nebula-dev/attachments/20071221/07cdda1b/smime.bin

------------------------------

_______________________________________________
nebula-dev mailing list
nebula-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/nebula-dev


End of nebula-dev Digest, Vol 20, Issue 10
******************************************

Back to the top