projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some more _BTN changes
[wxWidgets.git]
/
src
/
gtk
/
timer.cpp
diff --git
a/src/gtk/timer.cpp
b/src/gtk/timer.cpp
index c5e8bd37add140f03a8b4ebbc29f69811547ede3..eb7a15fbb5db874745ae9bfcea3ac22b2823926b 100644
(file)
--- a/
src/gtk/timer.cpp
+++ b/
src/gtk/timer.cpp
@@
-68,9
+68,9
@@
bool wxTimer::Start( int millisecs, bool oneShot )
(void)wxTimerBase::Start(millisecs, oneShot);
if (m_tag != -1)
(void)wxTimerBase::Start(millisecs, oneShot);
if (m_tag != -1)
- g
tk_timeout
_remove( m_tag );
+ g
_source
_remove( m_tag );
- m_tag = g
tk
_timeout_add( m_milli, timeout_callback, this );
+ m_tag = g_timeout_add( m_milli, timeout_callback, this );
return TRUE;
}
return TRUE;
}
@@
-79,7
+79,7
@@
void wxTimer::Stop()
{
if (m_tag != -1)
{
{
if (m_tag != -1)
{
- g
tk_timeout
_remove( m_tag );
+ g
_source
_remove( m_tag );
m_tag = -1;
}
}
m_tag = -1;
}
}