When working with plugins for eclipse, I want to use QTjambi for my plugin then I tried to start it with the code below. The args are no avaiable for me, but the QApplication.initialize(args) needs it, otherwise it doesn't launch, what to do?
public class View extends ViewPart{
public void createPartControl(Composite parent){
QApplication.initialize(args);
Form f = new Form();
f.wid.show();
QApplication.exec();
}
public void setFocus(){
}
}