mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
DtSetPref.C: fix some pointer<->int conversions
This commit is contained in:
parent
d7223930d4
commit
237a3a4d94
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ void DtSetPref::Apply()
|
||||||
_previous_update_interval = update_interval->Value();
|
_previous_update_interval = update_interval->Value();
|
||||||
if (_callback)
|
if (_callback)
|
||||||
(*_callback)(_callback_data, UPDATE_INTERVAL_CHANGED,
|
(*_callback)(_callback_data, UPDATE_INTERVAL_CHANGED,
|
||||||
(char *) _previous_update_interval);
|
(char *) ((long)_previous_update_interval));
|
||||||
}
|
}
|
||||||
if (mainw->findD)
|
if (mainw->findD)
|
||||||
mainw->findD->UpdateMatchAnyUser();
|
mainw->findD->UpdateMatchAnyUser();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue