Kaydet (Commit) 7986627c authored tarafından Pavel Janík's avatar Pavel Janík

Return zero value from non-void function to prevent compiler warnings.

üst 704bca13
...@@ -447,6 +447,7 @@ IMPL_LINK(FmSearchDialog, OnSearchTextModified, ComboBox*, EMPTYARG) ...@@ -447,6 +447,7 @@ IMPL_LINK(FmSearchDialog, OnSearchTextModified, ComboBox*, EMPTYARG)
IMPL_LINK(FmSearchDialog, OnFocusGrabbed, ComboBox*, EMPTYARG) IMPL_LINK(FmSearchDialog, OnFocusGrabbed, ComboBox*, EMPTYARG)
{ {
m_cmbSearchText.SetSelection( Selection( SELECTION_MIN, SELECTION_MAX ) ); m_cmbSearchText.SetSelection( Selection( SELECTION_MIN, SELECTION_MAX ) );
return 0;
} }
//------------------------------------------------------------------------ //------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment