Changeset 4857 for trunk/qt-gui/src/optionsdlg.cpp
- Timestamp:
- 02/16/07 05:47:30 (22 months ago)
- Files:
-
- 1 modified
-
trunk/qt-gui/src/optionsdlg.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt-gui/src/optionsdlg.cpp
r4849 r4857 250 250 chkMsgWinSticky->setChecked(mainwin->m_bMsgWinSticky); 251 251 chkSingleLineChatMode->setChecked(mainwin->m_bSingleLineChatMode); 252 chkUseDoubleReturn->setChecked(MLEditWrap::useDoubleReturn); 252 253 popPicture->setChecked(mainwin->m_bPopPicture); 253 254 popAlias->setChecked(mainwin->m_bPopAlias); … … 546 547 mainwin->m_bMsgWinSticky = chkMsgWinSticky->isChecked(); 547 548 mainwin->m_bSingleLineChatMode = chkSingleLineChatMode->isChecked(); 549 MLEditWrap::useDoubleReturn = chkUseDoubleReturn->isChecked(); 548 550 549 551 mainwin->m_bPopPicture = popPicture->isChecked(); … … 832 834 "and insert new lines with Ctrl+Enter, opposite of the normal mode")); 833 835 836 chkUseDoubleReturn = new QCheckBox(tr("Use double return"), boxMainWin); 837 QWhatsThis::add(chkUseDoubleReturn, tr("Hitting Return twice will be used instead of Ctrl+Return " 838 "to send messages and close input dialogs. Multiple new lines can be inserted with Ctrl+Return.")); 839 834 840 chkMsgChatView = new QCheckBox(tr("Chatmode Messageview"), boxMainWin); 835 841 QWhatsThis::add(chkMsgChatView, tr("Show the current chat history in Send Window"));
