summaryrefslogtreecommitdiffstats
path: root/src/gui_xmebw.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-06-29 13:19:27 +0200
committerBram Moolenaar <Bram@vim.org>2012-06-29 13:19:27 +0200
commita53c60d33c917455857de96a44e109da7d305d8a (patch)
tree713a8fa3cd960e923c1f1f9600ebfcfbcf9ca92e /src/gui_xmebw.c
parentf6a2b08c5444712ddb106547695cc4d59652ce7a (diff)
updated for version 7.3.572v7.3.572
Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO.
Diffstat (limited to 'src/gui_xmebw.c')
-rw-r--r--src/gui_xmebw.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/gui_xmebw.c b/src/gui_xmebw.c
index 5b6508867c..f7d59fcc51 100644
--- a/src/gui_xmebw.c
+++ b/src/gui_xmebw.c
@@ -375,11 +375,8 @@ set_pixmap(XmEnhancedButtonWidget eb)
XGetGeometry(dpy, pix, &root, &x, &y, &width, &height, &border, &depth);
- if (eb->enhancedbutton.label_location == (int)XmTOP
- || eb->enhancedbutton.label_location == (int)XmBOTTOM)
- shift = eb->primitive.shadow_thickness / 2;
- else
- shift = eb->primitive.shadow_thickness / 2;
+ /* TODO: does the shift depend on label_location somehow? */
+ shift = eb->primitive.shadow_thickness / 2;
if (shift < 1)
shift = 1;