On Fri, 19 Oct 2012 06:34:08 AM you wrote:
> I've implemented the QWebSpellChecker plugin for Rekonq to add inlinespell
> checking. This works well when running against QtWebKit 2.3
> 
> *except* :) WebComboboxes refuse to drop down when clicked on. Using the
> keyboard I can scroll through its values, but no dropdown.
> 


And of course, after days of head banging I figure it out 5 minutes after 
posting the question:

Once I changed this:

QObject* KWebKitPlatformPlugin::createExtension(Extension ext) const
{
        return new KWebSpellChecker();
}

to this:

QObject* KWebKitPlatformPlugin::createExtension(Extension ext) const
{
        if (ext == SpellChecker)
                return new KWebSpellChecker();
        else
                return NULL;
}

everything was fine.

Sorry for the bandwidth waste ...

-- 
Lindsay Mathieson

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
webkit-qt mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-qt

Reply via email to