diff -r dc7c549001d5 -r 85266cc22c7f javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/ercp/swt/mobile/TextExtension.java --- a/javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/ercp/swt/mobile/TextExtension.java Thu May 27 12:49:31 2010 +0300 +++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/ercp/swt/mobile/TextExtension.java Fri Jun 11 13:33:44 2010 +0300 @@ -351,7 +351,7 @@ SWT.getMessage("fetch_email"), OS.CNT_ACTIONALL, OS.CNT_DISPLAYALL); Display display = Internal_PackageSupport.display(this); - int handler = OS.SignalHandler_new(topHandle(), display, + int handler = OS.SignalHandler_new(topHandle(), OS.QSIGNAL_REQUESTCOMPLETED); OS.QObject_connectOrThrow(serviceRequest, "requestCompleted(QVariant)", @@ -389,7 +389,7 @@ SWT.getMessage("fetch_phonenumber"), OS.CNT_ACTIONALL, OS.CNT_DISPLAYALL); Display display = Internal_PackageSupport.display(this); - int handler = OS.SignalHandler_new(topHandle(), display, + int handler = OS.SignalHandler_new(topHandle(), OS.QSIGNAL_REQUESTCOMPLETED); OS.QObject_connectOrThrow(serviceRequest, "requestCompleted(QVariant)", @@ -458,7 +458,7 @@ Internal_PackageSupport.hookEvents(this); if(isExtended()) { Display display = Internal_PackageSupport.display(this); - int handler1 = OS.SignalHandler_new(topHandle(), display, OS.QSIGNAL_TEXT_CURSORPOSITIONCHANGED); + int handler1 = OS.SignalHandler_new(topHandle(), OS.QSIGNAL_TEXT_CURSORPOSITIONCHANGED); String s; if(Internal_PackageSupport.variant(this) == TextUtils.LINE_EDIT) { s = "cursorPositionChanged(int, int)"; @@ -467,7 +467,7 @@ } OS.QObject_connectOrThrow(topHandle(), s, handler1, "widgetSignal()", OS.QT_AUTOCONNECTION); - int handler2 = OS.SignalHandler_new(topHandle(), display, OS.QSIGNAL_TEXT_SELECTIONCHANGED); + int handler2 = OS.SignalHandler_new(topHandle(), OS.QSIGNAL_TEXT_SELECTIONCHANGED); OS.QObject_connectOrThrow(topHandle(), "selectionChanged()", handler2, "widgetSignal()", OS.QT_AUTOCONNECTION); }