Commit ad275d50 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Events.c: fix leftover DEBUG and TEST definitions

causing DEBUG output in regular builds.
parent 5ca9a6b1
...@@ -3135,9 +3135,6 @@ int nxagentCheckWindowConfiguration(XConfigureEvent* X) ...@@ -3135,9 +3135,6 @@ int nxagentCheckWindowConfiguration(XConfigureEvent* X)
return 1; return 1;
} }
#define DEBUG
#define TEST
int nxagentHandleConfigureNotify(XEvent* X) int nxagentHandleConfigureNotify(XEvent* X)
{ {
#ifdef DEBUG #ifdef DEBUG
...@@ -3153,7 +3150,7 @@ int nxagentHandleConfigureNotify(XEvent* X) ...@@ -3153,7 +3150,7 @@ int nxagentHandleConfigureNotify(XEvent* X)
fprintf(stderr, "%s: References:\n", __func__); fprintf(stderr, "%s: References:\n", __func__);
fprintf(stderr, "%s: DefaultWindow[0]: [0x%x]\n", __func__, nxagentDefaultWindows[0]); fprintf(stderr, "%s: DefaultWindow[0]: [0x%x]\n", __func__, nxagentDefaultWindows[0]);
fprintf(stderr, "%s: DefaultRootWindow(DISPLAY) [0x%lx]\n", __func__, DefaultRootWindow(nxagentDisplay)); fprintf(stderr, "%s: DefaultRootWindow(DISPLAY) [0x%lx]\n", __func__, DefaultRootWindow(nxagentDisplay));
#endif #endif
if (nxagentOption(Rootless) == True) if (nxagentOption(Rootless) == True)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment