View Single Post
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#847
I have tried -Xmx32m option to increase heap space but in vain.

Is there anyone with a working phoneme build? Perhaps this simple piece of code would add option for pasting (ctrl+v) in to opera mini.
Code:
void FrameBuffer::keyPressEvent(QKeyEvent *event) {

    if(event->matches(QKeySequence::Paste)) {
        QString clipboard = QApplication::clipboard()->text(QClipboard::Clipboard);
        for(int i = 0; i < clipboard.count(); ++i)
	    keyEvent(clipboard.at(i).unicode());
	return;
    }
framebuffer.cpp in cvm-latest.src.tgz
I don't know j2me. In regards to copy option Is it possible to copy text between java applications on "simple" phones?