Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[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.



Back to the top