many warnings fixed (from HP-UX compilation log)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-11-02 18:41:23 +00:00
parent 173348db5f
commit b02da6b187
26 changed files with 317 additions and 252 deletions

View File

@@ -99,9 +99,10 @@ void wxToolTip::Enable( bool flag )
void wxToolTip::SetDelay( long msecs )
{
if (!ss_tooltips) return;
if (!ss_tooltips)
return;
gtk_tooltips_set_delay( ss_tooltips, msecs );
gtk_tooltips_set_delay( ss_tooltips, (int)msecs );
}
#endif