Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] setText in VerifyEvent


Try arg0.text = "blah blah" instead.



"sniezna.stopa" <lizur@xxxxx>
Sent by: platform-swt-dev-bounces@xxxxxxxxxxx

06/21/2008 10:50 AM

Please respond to
"Eclipse Platform SWT component developers list."        <platform-swt-dev@xxxxxxxxxxx>

To
platform-swt-dev@xxxxxxxxxxx
cc
Subject
[platform-swt-dev] setText in VerifyEvent






Why this dont work?

              text = new Text(parent, SWT.LEFT);
                                 text.addVerifyListener(new VerifyListener()
                                 {
                                                  @Override
                                                  public void verifyText(VerifyEvent arg0)
                                                  {
                                                                   text.setText("blah blah");
                                                  }
                                 });
--
View this message in context: http://www.nabble.com/setText-in-VerifyEvent-tp18029433p18029433.html
Sent from the Eclipse Platform - swt mailing list archive at Nabble.com.

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


Back to the top