diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-08 16:38:42 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-08 16:38:42 +0200 |
commit | 09092155a66388bbd7be8d16debb35abfcfae700 (patch) | |
tree | 4cbe7f4f0d5c763405f721f7f5dba08864e53ef3 /src/gui_motif.c | |
parent | 83687a72155c70c062c689a9c545b5cdf5ebd0b4 (diff) | |
download | vim-git-09092155a66388bbd7be8d16debb35abfcfae700.tar.gz |
Remove unused code.
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r-- | src/gui_motif.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c index 397ab597d..51e6112cc 100644 --- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -1335,18 +1335,11 @@ gui_mch_add_menu_item(menu, idx) else wid = 4; -#if 0 - /* We better use a FormWidget here, since it's far more - * flexible in terms of size. */ - type = xmFormWidgetClass; - XtSetArg(args[n], XmNwidth, wid); n++; -#else type = xmSeparatorWidgetClass; XtSetArg(args[n], XmNwidth, wid); n++; XtSetArg(args[n], XmNminWidth, wid); n++; XtSetArg(args[n], XmNorientation, XmVERTICAL); n++; XtSetArg(args[n], XmNseparatorType, XmSHADOW_ETCHED_IN); n++; -#endif } else { @@ -2947,17 +2940,6 @@ gui_mch_compute_footer_height() return (int) height + top + bottom + (shadow << 1); } -#if 0 /* not used */ - void -gui_mch_set_footer_pos(h) - int h; /* textArea height */ -{ - XtVaSetValues(footer, - XmNtopOffset, h + 7, - NULL); -} -#endif - void gui_mch_enable_footer(showit) int showit; |