INTEGRATION: CWS warningfixes02 (1.10.6); FILE MERGED
2006/06/30 11:53:08 sb 1.10.6.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
This commit is contained in:
parent
bc389339d2
commit
e4b35df947
1 changed files with 6 additions and 6 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: dbtreelistbox.cxx,v $
|
||||
*
|
||||
* $Revision: 1.10 $
|
||||
* $Revision: 1.11 $
|
||||
*
|
||||
* last change: $Author: hr $ $Date: 2006-06-20 03:00:10 $
|
||||
* last change: $Author: kz $ $Date: 2006-07-19 16:02:52 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -423,19 +423,19 @@ void DBTreeListBox::KeyInput( const KeyEvent& rKEvt )
|
|||
switch(eFunc)
|
||||
{
|
||||
case KEYFUNC_CUT:
|
||||
if ( bHandled = (m_aCutHandler.IsSet() && m_pSelectedEntry) )
|
||||
if ( (bHandled = (m_aCutHandler.IsSet() && m_pSelectedEntry)) )
|
||||
m_aCutHandler.Call(m_pSelectedEntry);
|
||||
break;
|
||||
case KEYFUNC_COPY:
|
||||
if ( bHandled = (m_aCopyHandler.IsSet() && m_pSelectedEntry) )
|
||||
if ( (bHandled = (m_aCopyHandler.IsSet() && m_pSelectedEntry)) )
|
||||
m_aCopyHandler.Call(m_pSelectedEntry);
|
||||
break;
|
||||
case KEYFUNC_PASTE:
|
||||
if ( bHandled = (m_aPasteHandler.IsSet() && m_pSelectedEntry) )
|
||||
if ( (bHandled = (m_aPasteHandler.IsSet() && m_pSelectedEntry)) )
|
||||
m_aPasteHandler.Call(m_pSelectedEntry);
|
||||
break;
|
||||
case KEYFUNC_DELETE:
|
||||
if ( bHandled = (m_aDeleteHandler.IsSet() && m_pSelectedEntry) )
|
||||
if ( (bHandled = (m_aDeleteHandler.IsSet() && m_pSelectedEntry)) )
|
||||
m_aDeleteHandler.Call(m_pSelectedEntry);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue