| 94 | } |
| 95 | |
| 96 | xcb_atom_t getDeleteAtom(xcb_connection_t *conn) |
| 97 | { |
| 98 | if(!conn) THROW("Invalid_argument"); |
| 99 | XCBConnAttribs *attribs = HASH::find(conn, NULL); |
| 100 | if(attribs) return attribs->deleteAtom; |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | private: |
| 105 |
no test coverage detected