1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 12:28:22 +01:00

wmaker: Added 'static' attribute to local variables

This code is probably never compiled, but that's not a reason to
leave it incorrect.
This commit is contained in:
Christophe CURIS
2013-10-12 16:18:06 +02:00
committed by Carlos R. Mafra
parent ad2b5f0ec9
commit 4dadc83a4c

View File

@@ -20,23 +20,23 @@
#define XDND_VERSION 3L #define XDND_VERSION 3L
Atom _XA_XdndAware; static Atom _XA_XdndAware;
Atom _XA_XdndEnter; static Atom _XA_XdndEnter;
Atom _XA_XdndLeave; static Atom _XA_XdndLeave;
Atom _XA_XdndDrop; static Atom _XA_XdndDrop;
Atom _XA_XdndPosition; static Atom _XA_XdndPosition;
Atom _XA_XdndStatus; static Atom _XA_XdndStatus;
Atom _XA_XdndActionCopy; static Atom _XA_XdndActionCopy;
Atom _XA_XdndSelection; static Atom _XA_XdndSelection;
Atom _XA_XdndFinished; static Atom _XA_XdndFinished;
Atom _XA_WINDOWMAKER_XDNDEXCHANGE; static Atom _XA_WINDOWMAKER_XDNDEXCHANGE;
/* /*
Atom _XA_MOTIF_DRAG_RECEIVER_INFO; Atom _XA_MOTIF_DRAG_RECEIVER_INFO;
Atom _XA_MOTIF_DRAG_AND_DROP_MESSAGE; Atom _XA_MOTIF_DRAG_AND_DROP_MESSAGE;
*/ */
Atom atom_support; static Atom atom_support;
void wXDNDInitializeAtoms() void wXDNDInitializeAtoms()
{ {