Dear all,
I forgot to include the other patch, where you can edit multiline messages by
ctrl-enter.. then enter, voila!. Paste also works.
Cheers and have a nice sunday
Emre
mledit.cpp: 47
------------------------------
setWordWrap(NoWrap);
}
- QAccel *a = new QAccel( this );
- a->connectItem(a->insertItem(Key_Enter + CTRL),
- this, SIGNAL(signal_CtrlEnterPressed()));
- a->connectItem(a->insertItem(Key_Return + CTRL),
- this, SIGNAL(signal_CtrlEnterPressed()));
if (editFont) QWidget::setFont(*editFont, true);
------------------------------
mledit.cpp: 175
---------------
QMultiLineEdit::keyPressEvent(e);
}
return;
}
+ if(e->key()==Qt::Key_Return || e->key()==Qt::Key_Enter)
+ signal_CtrlEnterPressed();
+ else
QMultiLineEdit::keyPressEvent(e);
}
-------------------
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
LICQ-Main mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/licq-main