aboutsummaryrefslogtreecommitdiff
path: root/libi3
diff options
context:
space:
mode:
authorOrestis Floros <orestisf1993@gmail.com>2018-04-21 13:02:14 +0300
committerOrestis Floros <orestisf1993@gmail.com>2018-10-13 21:10:10 +0300
commite4d2b385529847b926a716731be4a8c22ed79007 (patch)
tree86aea3188e00da8c6f53d8ffc8a9a87cbd5580fc /libi3
parenta65914f3384a8c1f6f8c2facb8c3ca28a88d4009 (diff)
downloadi3-e4d2b385529847b926a716731be4a8c22ed79007.tar.gz
i3-e4d2b385529847b926a716731be4a8c22ed79007.zip
Make comment style more consistent
Diffstat (limited to 'libi3')
-rw-r--r--libi3/draw_util.c8
-rw-r--r--libi3/string.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/libi3/draw_util.c b/libi3/draw_util.c
index 6a2e93dc..f88360dc 100644
--- a/libi3/draw_util.c
+++ b/libi3/draw_util.c
@@ -121,7 +121,7 @@ static void draw_util_set_source_color(surface_t *surface, color_t color) {
cairo_set_source_rgba(surface->cr, color.red, color.green, color.blue, color.alpha);
}
-/**
+/*
* Draw the given text using libi3.
* This function also marks the surface dirty which is needed if other means of
* drawing are used. This will be the case when using XCB to draw text.
@@ -140,7 +140,7 @@ void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_
cairo_surface_mark_dirty(surface->surface);
}
-/**
+/*
* Draws a filled rectangle.
* This function is a convenience wrapper and takes care of flushing the
* surface as well as restoring the cairo state.
@@ -167,7 +167,7 @@ void draw_util_rectangle(surface_t *surface, color_t color, double x, double y,
cairo_restore(surface->cr);
}
-/**
+/*
* Clears a surface with the given color.
*
*/
@@ -191,7 +191,7 @@ void draw_util_clear_surface(surface_t *surface, color_t color) {
cairo_restore(surface->cr);
}
-/**
+/*
* Copies a surface onto another surface.
*
*/
diff --git a/libi3/string.c b/libi3/string.c
index a078b33e..9efa3690 100644
--- a/libi3/string.c
+++ b/libi3/string.c
@@ -99,7 +99,7 @@ i3String *i3string_from_ucs2(const xcb_char2b_t *from_ucs2, size_t num_glyphs) {
return str;
}
-/**
+/*
* Copies the given i3string.
* Note that this will not free the source string.
*/