mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +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();
|
||||
if (_callback)
|
||||
(*_callback)(_callback_data, UPDATE_INTERVAL_CHANGED,
|
||||
(char *) _previous_update_interval);
|
||||
(char *) ((long)_previous_update_interval));
|
||||
}
|
||||
if (mainw->findD)
|
||||
mainw->findD->UpdateMatchAnyUser();
|
||||
|
|
Loading…
Reference in a new issue