fix misleading indentation
Mostly to shut up the compiler, but some real bugs hidden in there.
This commit is contained in:
@@ -1957,7 +1957,7 @@ void _DtHelpSetupDisplayType(
|
||||
{
|
||||
/* Update the History and Jump Lists */
|
||||
|
||||
if (updateType == DtHISTORY_AND_JUMP)
|
||||
if (updateType == DtHISTORY_AND_JUMP) {
|
||||
_DtHelpUpdateJumpList(hw->help_dialog.display.manPage,
|
||||
DtHELP_TYPE_MAN_PAGE, (Widget)hw);
|
||||
|
||||
@@ -1966,6 +1966,7 @@ void _DtHelpSetupDisplayType(
|
||||
_DtHelpDisplayAreaSetList (hw->help_dialog.help.pDisplayArea,
|
||||
topicHandle, FALSE,
|
||||
hw->help_dialog.backtr.scrollPosition);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -922,11 +922,9 @@ _DtTermPrimScrollCompleteIfNecessary(Widget w, short scrollTopRow,
|
||||
if ((lines + tpd->scroll.jump.scrollLines > maxJumpScrollLines) ||
|
||||
(lines + tpd->scroll.jump.scrollLines < -maxJumpScrollLines))
|
||||
(void) _DtTermPrimScrollComplete(w, True);
|
||||
return;
|
||||
} else {
|
||||
if (!tw->term.jumpScroll && tpd->scroll.nojump.pendingScroll) {
|
||||
(void) _DtTermPrimScrollComplete(w, True);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -667,7 +667,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
(void) XtFree(accelerator);
|
||||
(void) XtFree(acceleratorText);
|
||||
}
|
||||
if (menuBar || (!menuBar && firstPopup))
|
||||
if (menuBar || (!menuBar && firstPopup)) {
|
||||
#ifdef PULLDOWN_ACCELERATORS
|
||||
ks = XStringToKeysym(GETMESSAGE(NL_SETN_ViewMenu,21, "W"));
|
||||
(void) _DtTermViewCreateCascadeButton(menu, pulldown[pc],
|
||||
@@ -679,6 +679,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
(GETMESSAGE(NL_SETN_ViewMenu,20, "Window")),
|
||||
NoSymbol, NULL, NULL, NULL, NULL);
|
||||
#endif /* PULLDOWN_ACCELERATORS */
|
||||
}
|
||||
|
||||
(void) pc++;
|
||||
if (first) {
|
||||
@@ -710,7 +711,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
(void) XtFree(accelerator);
|
||||
(void) XtFree(acceleratorText);
|
||||
}
|
||||
if (menuBar || (!menuBar && firstPopup))
|
||||
if (menuBar || (!menuBar && firstPopup)) {
|
||||
#ifdef PULLDOWN_ACCELERATORS
|
||||
ks = XStringToKeysym(GETMESSAGE(NL_SETN_ViewMenu,31, "E"));
|
||||
(void) _DtTermViewCreateCascadeButton(menu, pulldown[pc],
|
||||
@@ -722,6 +723,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
(GETMESSAGE(NL_SETN_ViewMenu,30, "Edit")),
|
||||
NoSymbol, NULL, NULL, NULL, NULL);
|
||||
#endif /* PULLDOWN_ACCELERATORS */
|
||||
}
|
||||
|
||||
(void) pc++;
|
||||
if (first) {
|
||||
@@ -777,7 +779,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
ks,
|
||||
NULL, NULL, NULL, NULL);
|
||||
}
|
||||
if (menuBar || (!menuBar && firstPopup))
|
||||
if (menuBar || (!menuBar && firstPopup)) {
|
||||
#ifdef PULLDOWN_ACCELERATORS
|
||||
ks = XStringToKeysym(GETMESSAGE(NL_SETN_ViewMenu,47, "O"));
|
||||
(void) _DtTermViewCreateCascadeButton(menu, pulldown[pc],
|
||||
@@ -789,6 +791,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
(GETMESSAGE(NL_SETN_ViewMenu,46, "Options")),
|
||||
NoSymbol, NULL, NULL, NULL, NULL);
|
||||
#endif /* PULLDOWN_ACCELERATORS */
|
||||
}
|
||||
|
||||
(void) pc++;
|
||||
if (first) {
|
||||
@@ -905,7 +908,7 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
NULL, NULL, helpAboutDttermCallback, NULL);
|
||||
}
|
||||
|
||||
if (menuBar || (!menuBar && firstPopup))
|
||||
if (menuBar || (!menuBar && firstPopup)) {
|
||||
#ifdef PULLDOWN_ACCELERATORS
|
||||
ks = XStringToKeysym(GETMESSAGE(NL_SETN_ViewMenu,81,"H"));
|
||||
cascade = _DtTermViewCreateCascadeButton(menu, pulldown[pc],
|
||||
@@ -918,6 +921,8 @@ CreateMenu(Widget termView, Widget parent, Boolean menuBar,
|
||||
NoSymbol, NULL, NULL, NULL, NULL);
|
||||
#endif /* PULLDOWN_ACCELERATORS */
|
||||
#endif /* HPVUE */
|
||||
}
|
||||
|
||||
if (menuBar) {
|
||||
/* this is the help button... */
|
||||
i = 0;
|
||||
|
||||
@@ -2481,7 +2481,7 @@ activate_cb( Widget w,
|
||||
XmProcessTraversal((Widget)combo_w,
|
||||
(XmTraversalDirection) XmTRAVERSE_CURRENT);
|
||||
|
||||
if (Type(combo_w) == DtDROP_DOWN_COMBO_BOX)
|
||||
if (Type(combo_w) == DtDROP_DOWN_COMBO_BOX)
|
||||
TextFieldActivate(combo_p, call_data);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user