summaryrefslogtreecommitdiff
path: root/svx/source/dialog/srchctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/srchctrl.cxx')
-rw-r--r--svx/source/dialog/srchctrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/srchctrl.cxx b/svx/source/dialog/srchctrl.cxx
index e26a85a8bff3..460ebad2a0d1 100644
--- a/svx/source/dialog/srchctrl.cxx
+++ b/svx/source/dialog/srchctrl.cxx
@@ -55,7 +55,7 @@ void SvxSearchController::StateChanged( sal_uInt16 nSID, SfxItemState eState,
else if ( SID_SEARCH_OPTIONS == nSID )
{
DBG_ASSERT( pState->ISA(SfxUInt16Item), "wrong item type" );
- sal_uInt16 nFlags = (sal_uInt16) static_cast<const SfxUInt16Item*>(pState)->GetValue();
+ SearchOptionFlags nFlags = (SearchOptionFlags) static_cast<const SfxUInt16Item*>(pState)->GetValue();
rSrchDlg.EnableControls_Impl( nFlags );
}
else if ( SID_SEARCH_ITEM == nSID )
@@ -65,7 +65,7 @@ void SvxSearchController::StateChanged( sal_uInt16 nSID, SfxItemState eState,
}
}
else if ( SID_SEARCH_OPTIONS == nSID || SID_SEARCH_ITEM == nSID )
- rSrchDlg.EnableControls_Impl( 0 );
+ rSrchDlg.EnableControls_Impl( SearchOptionFlags::NONE );
}