projects
/
emu8051.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2fdef1
)
Replace gtk_idle functions with g_idle equivalents
author
Hugo Villeneuve
<hugo@hugovil.com>
Mon, 9 Sep 2013 03:36:35 +0000
(23:36 -0400)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Mon, 9 Sep 2013 03:36:35 +0000
(23:36 -0400)
src/emugtk.c
patch
|
blob
|
history
diff --git
a/src/emugtk.c
b/src/emugtk.c
index
3d6ff1f
..
0ff59fb
100644
(file)
--- a/
src/emugtk.c
+++ b/
src/emugtk.c
@@
-64,7
+64,7
@@
emugtk_stop_running()
#ifdef EMU8051_DEBUG
printf("emugtk_StopRunning()\n");
#endif
- g
tk_idl
e_remove(running_function_tag);
+ g
_sourc
e_remove(running_function_tag);
running = 0;
regwin_Show();
pgmwin_Disasm();
@@
-95,7
+95,7
@@
emugtk_start_running(void)
#ifdef EMU8051_DEBUG
printf("emugtk_StartRunning()\n");
#endif
- running_function_tag = g
tk
_idle_add(emugtk_running, 0);
+ running_function_tag = g_idle_add(emugtk_running, 0);
running = 1;
}
}