Remove NOTDONE code

This commit is contained in:
wmoxam
2019-10-13 23:41:22 -04:00
committed by Jon Trulson
parent f2d52e35d6
commit 923951b414
4 changed files with 0 additions and 117 deletions

View 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.

View 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);
}
}