summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIngo Bürk <ingo.buerk@tngtech.com>2015-09-21 22:36:36 +0200
committerChristian Linhart <chris@demorecorder.com>2015-10-26 18:06:49 +0100
commite500bd837be8366830deb703a7d22d13020fe4c5 (patch)
tree47cacf0f4352a2e1ef8525d2e6a9630bc905c689 /src
parent259a6f122f905e1d702af9d355356df8c3f462f5 (diff)
downloadxcb-proto-e500bd837be8366830deb703a7d22d13020fe4c5.tar.gz
Fix examples which use xcb_connection instead of the correct xcb_connection_t.
Reviewed-By: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/xproto.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/xproto.xml b/src/xproto.xml
index da9ec01..437dc30 100644
--- a/src/xproto.xml
+++ b/src/xproto.xml
@@ -1862,7 +1862,7 @@ Configures a window's size, position, border width and stacking order.
* with a size of 1024x768 pixels.
*
*/
-void my_example(xcb_connection *c, xcb_window_t window) {
+void my_example(xcb_connection_t *c, xcb_window_t window) {
uint16_t mask = 0;
mask |= XCB_CONFIG_WINDOW_X;
@@ -1983,7 +1983,7 @@ Gets the current geometry of the specified drawable (either `Window` or `Pixmap`
* Displays the x and y position of the given window.
*
*/
-void my_example(xcb_connection *c, xcb_window_t window) {
+void my_example(xcb_connection_t *c, xcb_window_t window) {
xcb_get_geometry_cookie_t cookie;
xcb_get_geometry_reply_t *reply;
@@ -2043,7 +2043,7 @@ specified `window`. The children are listed in bottom-to-top stacking order.
* Displays the root, parent and children of the specified window.
*
*/
-void my_example(xcb_connection *conn, xcb_window_t window) {
+void my_example(xcb_connection_t *conn, xcb_window_t window) {
xcb_query_tree_cookie_t cookie;
xcb_query_tree_reply_t *reply;
@@ -2094,7 +2094,7 @@ not yet exist.
* Resolves the _NET_WM_NAME atom.
*
*/
-void my_example(xcb_connection *c) {
+void my_example(xcb_connection_t *c) {
xcb_intern_atom_cookie_t cookie;
xcb_intern_atom_reply_t *reply;
@@ -2191,7 +2191,7 @@ window title, encoded as UTF-8 string, in the `_NET_WM_NAME` property.
* Sets the WM_NAME property of the window to "XCB Example".
*
*/
-void my_example(xcb_connection *conn, xcb_window_t window) {
+void my_example(xcb_connection_t *conn, xcb_window_t window) {
xcb_change_property(conn,
XCB_PROP_MODE_REPLACE,
window,
@@ -2315,7 +2315,7 @@ TODO: talk about the offset/length thing. what's a valid use case?
* Prints the WM_NAME property of the window.
*
*/
-void my_example(xcb_connection *c, xcb_window_t window) {
+void my_example(xcb_connection_t *c, xcb_window_t window) {
xcb_get_property_cookie_t cookie;
xcb_get_property_reply_t *reply;
@@ -2603,7 +2603,7 @@ Actively grabs control of the pointer. Further pointer events are reported only
* Grabs the pointer actively
*
*/
-void my_example(xcb_connection *conn, xcb_screen_t *screen, xcb_cursor_t cursor) {
+void my_example(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor) {
xcb_grab_pointer_cookie_t cookie;
xcb_grab_pointer_reply_t *reply;
@@ -2878,7 +2878,7 @@ last-keyboard-grab time is set to the specified time.
* Grabs the keyboard actively
*
*/
-void my_example(xcb_connection *conn, xcb_screen_t *screen) {
+void my_example(xcb_connection_t *conn, xcb_screen_t *screen) {
xcb_grab_keyboard_cookie_t cookie;
xcb_grab_keyboard_reply_t *reply;
@@ -4280,7 +4280,7 @@ Changes the components specified by `value_mask` for the specified graphics cont
* Changes the foreground color component of the specified graphics context.
*
*/
-void my_example(xcb_connection *conn, xcb_gcontext_t gc, uint32_t fg, uint32_t bg) {
+void my_example(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t fg, uint32_t bg) {
/* C99 allows us to use a compact way of changing a single component: */
xcb_change_gc(conn, gc, XCB_GC_FOREGROUND, (uint32_t[]){ fg });
@@ -4496,7 +4496,7 @@ request were a single, filled shape.
* Draw a straight line.
*
*/
-void my_example(xcb_connection *conn, xcb_drawable_t drawable, xcb_gcontext_t gc) {
+void my_example(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc) {
xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2,
(xcb_point_t[]) { {10, 10}, {100, 10} });
xcb_flush(conn);