removed unnecessary atoms from X clipboard object.
This commit is contained in:
parent
1fd07567cc
commit
b1163aa593
|
@ -29,14 +29,9 @@ CXWindowsClipboard::CXWindowsClipboard(Display* display,
|
||||||
m_atomTargets = XInternAtom(m_display, "TARGETS", False);
|
m_atomTargets = XInternAtom(m_display, "TARGETS", False);
|
||||||
m_atomMultiple = XInternAtom(m_display, "MULTIPLE", False);
|
m_atomMultiple = XInternAtom(m_display, "MULTIPLE", False);
|
||||||
m_atomTimestamp = XInternAtom(m_display, "TIMESTAMP", False);
|
m_atomTimestamp = XInternAtom(m_display, "TIMESTAMP", False);
|
||||||
m_atomAtom = XInternAtom(m_display, "ATOM", False);
|
|
||||||
m_atomAtomPair = XInternAtom(m_display, "ATOM_PAIR", False);
|
m_atomAtomPair = XInternAtom(m_display, "ATOM_PAIR", False);
|
||||||
m_atomInteger = XInternAtom(m_display, "INTEGER", False);
|
|
||||||
m_atomData = XInternAtom(m_display, "CLIP_TEMPORARY", False);
|
m_atomData = XInternAtom(m_display, "CLIP_TEMPORARY", False);
|
||||||
m_atomINCR = XInternAtom(m_display, "INCR", False);
|
m_atomINCR = XInternAtom(m_display, "INCR", False);
|
||||||
m_atomString = XInternAtom(m_display, "STRING", False);
|
|
||||||
m_atomText = XInternAtom(m_display, "TEXT", False);
|
|
||||||
m_atomCompoundText = XInternAtom(m_display, "COMPOUND_TEXT", False);
|
|
||||||
m_atomMotifClipLock = XInternAtom(m_display, "_MOTIF_CLIP_LOCK", False);
|
m_atomMotifClipLock = XInternAtom(m_display, "_MOTIF_CLIP_LOCK", False);
|
||||||
m_atomMotifClipHeader = XInternAtom(m_display, "_MOTIF_CLIP_HEADER", False);
|
m_atomMotifClipHeader = XInternAtom(m_display, "_MOTIF_CLIP_HEADER", False);
|
||||||
m_atomMotifClipAccess = XInternAtom(m_display,
|
m_atomMotifClipAccess = XInternAtom(m_display,
|
||||||
|
|
|
@ -267,14 +267,9 @@ private:
|
||||||
Atom m_atomTargets;
|
Atom m_atomTargets;
|
||||||
Atom m_atomMultiple;
|
Atom m_atomMultiple;
|
||||||
Atom m_atomTimestamp;
|
Atom m_atomTimestamp;
|
||||||
Atom m_atomAtom;
|
|
||||||
Atom m_atomAtomPair;
|
Atom m_atomAtomPair;
|
||||||
Atom m_atomInteger;
|
|
||||||
Atom m_atomData;
|
Atom m_atomData;
|
||||||
Atom m_atomINCR;
|
Atom m_atomINCR;
|
||||||
Atom m_atomString;
|
|
||||||
Atom m_atomText;
|
|
||||||
Atom m_atomCompoundText;
|
|
||||||
Atom m_atomMotifClipLock;
|
Atom m_atomMotifClipLock;
|
||||||
Atom m_atomMotifClipHeader;
|
Atom m_atomMotifClipHeader;
|
||||||
Atom m_atomMotifClipAccess;
|
Atom m_atomMotifClipAccess;
|
||||||
|
|
Loading…
Reference in New Issue