bool wxComboBox::CanUndo() const
{
+ if (!IsEditable())
+ return false;
+
HWND hEditWnd = (HWND) GetEditHWND() ;
if ( hEditWnd )
return ::SendMessage(hEditWnd, EM_CANUNDO, 0, 0) != 0;
bool wxComboBox::CanRedo() const
{
+ if (!IsEditable())
+ return false;
+
HWND hEditWnd = (HWND) GetEditHWND() ;
if ( hEditWnd )
return ::SendMessage(hEditWnd, EM_CANUNDO, 0, 0) != 0;
bool wxComboBox::CanCut() const
{
- return CanCopy() && IsEditable();
+ return IsEditable() && CanCopy() ;
}
bool wxComboBox::CanPaste() const