Show
Ignore:
Timestamp:
04/27/08 22:47:06 (7 months ago)
Author:
flynd
Message:

Renamed config parameter for hiding chat dialog buttons to more general name.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/settings/chat.cpp

    r6162 r6173  
    534534  myAutoPosReplyWinCheck->setChecked(chatConfig->autoPosReplyWin()); 
    535535  myAutoSendThroughServerCheck->setChecked(chatConfig->autoSendThroughServer()); 
    536   myShowSendCloseCheck->setChecked(chatConfig->showSendClose()); 
     536  myShowSendCloseCheck->setChecked(chatConfig->showDlgButtons()); 
    537537  myCheckSpelling->setChecked(chatConfig->checkSpelling()); 
    538538  myMsgWinStickyCheck->setChecked(chatConfig->msgWinSticky()); 
     
    607607  chatConfig->setAutoPosReplyWin(myAutoPosReplyWinCheck->isChecked()); 
    608608  chatConfig->setAutoSendThroughServer(myAutoSendThroughServerCheck->isChecked()); 
    609   chatConfig->setShowSendClose(myShowSendCloseCheck->isChecked()); 
     609  chatConfig->setShowDlgButtons(myShowSendCloseCheck->isChecked()); 
    610610  chatConfig->setCheckSpelling(myCheckSpelling->isChecked()); 
    611611  chatConfig->setMsgWinSticky(myMsgWinStickyCheck->isChecked());