summaryrefslogtreecommitdiffstats
path: root/src/if_mzsch.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-06 20:04:44 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-06 20:04:44 +0000
commit241a8aaa48404921a3e84fc2cdfb5c752edeab69 (patch)
tree08b4766d30eb26d55c7772ae4763835ee6d9bbb9 /src/if_mzsch.c
parent9372a11ca67d6bdec9c16407a941cb8094eec3b6 (diff)
updated for version 7.0163v7.0163
Diffstat (limited to 'src/if_mzsch.c')
-rw-r--r--src/if_mzsch.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/if_mzsch.c b/src/if_mzsch.c
index 186ee66eba..940c991fed 100644
--- a/src/if_mzsch.c
+++ b/src/if_mzsch.c
@@ -621,8 +621,6 @@ static XtIntervalId timer_id = (XtIntervalId)0;
pascal void timer_proc(EventLoopTimerRef, void *);
static EventLoopTimerRef timer_id = NULL;
static EventLoopTimerUPP timerUPP;
-#elif defined(FEAT_GUI_KDE)
-static int timer_id = 0;
#endif
#ifndef FEAT_GUI_W32 /* Win32 console and Unix */
@@ -664,9 +662,6 @@ timer_proc(XtPointer timed_out, XtIntervalId *interval_id)
# elif defined(FEAT_GUI_MAC)
pascal void
timer_proc(EventLoopTimerRef theTimer, void *userData)
-#elif defined(FEAT_GUI_KDE)
- void
-timer_proc(void)
# endif
{
scheme_check_threads();
@@ -693,9 +688,6 @@ setup_timer(void)
timerUPP = NewEventLoopTimerUPP(timer_proc);
InstallEventLoopTimer(GetMainEventLoop(), p_mzq * kEventDurationMillisecond,
p_mzq * kEventDurationMillisecond, timerUPP, NULL, &timer_id);
-#elif defined(FEAT_GUI_KDE)
- mzscheme_kde_start_timer();
- timer_id = 1; /* just signal that timer was started */
# endif
}
@@ -711,8 +703,6 @@ remove_timer(void)
# elif defined(FEAT_GUI_MAC)
RemoveEventLoopTimer(timer_id);
DisposeEventLoopTimerUPP(timerUPP);
-#elif defined(FEAT_GUI_KDE)
- mzscheme_kde_stop_timer();
# endif
timer_id = 0;
}