Remove NOTDONE code
authorwmoxam <wes@wmoxam.com>
Mon, 14 Oct 2019 03:41:22 +0000 (23:41 -0400)
committerJon Trulson <jon@radscan.com>
Mon, 14 Oct 2019 17:57:41 +0000 (11:57 -0600)
cde/lib/DtHelp/HelpQuickD.c
cde/lib/DtTerm/TermPrim/TermPrimBuffer.c
cde/programs/dtwm/README
cde/programs/dtwm/WmFeedback.c

index db25991f2890ea8d34413a02af22bbc88fea0e6f..cc507d25fbbd5a0031e83e1bdc88f5e5dd1ad4f9 100644 (file)
@@ -1133,77 +1133,6 @@ static void Destroy(
 
 }
 
-\f
-#ifdef NOTDONE
-/*****************************************************************************
- * Function:       static void MenuBarFix( 
- *                            XmGeoMatrix geoSpec,
- *                            int action,
- *                            XmGeoRowLayout layoutPtr,
- *                            XmKidGeometry rowPtr)
- *                            
- *                         
- *
- * Parameters:   
- *
- * Return Value:    
- *
- * Purpose:      This routine is a fixup routine which can be used for rows 
- *                which consist of a single MenuBar RowColumn.  The effect of
- *                this routine is to have the RowColumn ignore the margin
- *                width and height.
- *
- *****************************************************************************/
-static void MenuBarFix(
-    XmGeoMatrix geoSpec,
-    int action,
-#if XmREVISION >= 2
-    XmGeoMajorLayout layoutPtr,
-#else
-    XmGeoRowLayout layoutPtr,
-#endif
-    XmKidGeometry rowPtr )
-{
-    Dimension       marginW ;
-    Dimension       marginH ;
-    Dimension       twoMarginW ;
-
-
-    marginW = geoSpec->margin_w ;
-    twoMarginW = (marginW << 1) ;
-    marginH = geoSpec->margin_h ;
-
-    switch(    action    )
-    {
-        case XmGEO_PRE_SET:
-        {   rowPtr->box.x -= marginW ;
-            rowPtr->box.width += twoMarginW ;
-            rowPtr->box.y -= marginH ;
-            break ;
-            }
-        default:
-        {   if(    rowPtr->box.width > twoMarginW    )
-            {
-                /* Avoid subtracting a margin from box width which would
-                *   result in underflow.
-                */
-                rowPtr->box.x += marginW ;
-                rowPtr->box.width -= twoMarginW ;
-                }
-            if(    action == XmGET_PREFERRED_SIZE    )
-            {
-                /* Set width to some small value so it does not
-                *   effect total width of matrix.
-                */
-                rowPtr->box.width = 1 ;
-                }
-            break ;
-            }
-        }
-    return ;
-} 
-#endif
-\f
 /*****************************************************************************
  * Function:       static void SeparatorFix( 
  *                            XmGeoMatrix geoSpec,
@@ -1292,9 +1221,6 @@ XmGeoMatrix _DtHelpQuickDialogWidgetGeoMatrixCreate(
     XmGeoRowLayout  layoutPtr ;
     XmKidGeometry   boxPtr ;
              XmKidGeometry   firstButtonBox ;
-#ifdef NOTDONE
-             int fix_menubar = False ;
-#endif
 
     /* Replace the value "10" for the marginWidth resource when avail */
 
index fcc251a97bb35075047a7a794ea605dd29d0ca98..fbad9c2f927d4e2d6f273077d086b2a77c745ab7 100644 (file)
@@ -1852,36 +1852,6 @@ _DtTermPrimBufferInsertLineFromTB
     }
 }
 
-
-#ifdef NOTDONE
-/**************************************************************************
- *  Function:
- *     _DtTermPrimBufferScrollToHistory():  scroll one or more lines
- *             of text from the beginning of the active buffer into
- *             the history buffer.
- *
- *  Parameters:
- *     TermBuffer tb: term buffer to scroll out of
- *     short length: number of lines to scroll
- *
- *  Returns:
- *     the number of lines scrolled (removed from active buffer)
- *
- *  Notes:
- */
-int
-_DtTermPrimBufferScrollToHistory()
-(
-    const TermBuffer tb,
-    const short length,
-)
-{
-    if (PREV_BUFFER(tb)) {
-    
-}
-#endif /* NOTDONE */
-
-
 /**************************************************************************
  *  Function:
  *     _DtTermPrimBufferDeleteLine():  deletes one or more lines of text from
index 3ab2d969ae845577388ac0b99f321f790f2ef8f9..9365738676cd7ff5354a9d1287b50c3fa9d54211 100644 (file)
@@ -83,10 +83,6 @@ header file include flags, and macros (e.g. ABS).
     NO
        Vestigal/experimental code for position help dialog (WmHelp.c).
 
-    NOTDONE
-       Vestigal/experimental code to reduce output to feedback window
-       (WmFeedback.c).
-
     NO_OL_COMPAT
        If defined, then code to read and interpret Open Look window
        manager hints is removed.
index 3b8800de3e481cdf04331c2bfdd100d03b6ad755..26827c96f81285f886e44628d06db8cebe6582d0 100644 (file)
@@ -541,14 +541,6 @@ void UpdateFeedbackInfo (WmScreenData *pSD, int x, int y, unsigned int width, un
      * configuration outline.
      */
 
-#ifdef NOTDONE
-    /* only update if something changed */
-    if (((pSD->fbStyle & FB_POSITION) &&
-        ((pSD->fbLastX != x) || (pSD->fbLastY != y))) || 
-       ((pSD->fbStyle & FB_SIZE) &&
-        ((pSD->fbLastWidth != width) || (pSD->fbLastHeight != height))))
-#endif /* NOTDONE */
-    {
        pSD->fbLastX = x;
        pSD->fbLastY = y;
        pSD->fbLastWidth = width;
@@ -557,7 +549,6 @@ void UpdateFeedbackInfo (WmScreenData *pSD, int x, int y, unsigned int width, un
        UpdateFeedbackText (pSD, x, y, width, height);
 
        PaintFeedbackWindow(pSD);
-    }
 }