summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2014-09-17 14:58:17 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2014-09-17 14:58:17 +0100
commit28a5104e11738fd04500aa8b8d964c49ba0a3c96 (patch)
tree464ab622d672701d41e18bc9e2d997f7902325c8
parent14da1c50270f1a3a8b2cb8c95d35e87bc9a31558 (diff)
downloadclutter-28a5104e11738fd04500aa8b8d964c49ba0a3c96.tar.gz
Remove gtk-doc tags from clutter_test_* API
The API is public because we use it in the test suite, but it's not documented.
-rw-r--r--clutter/clutter-test-utils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/clutter/clutter-test-utils.c b/clutter/clutter-test-utils.c
index a5f2f7bc2..6bc76b3f4 100644
--- a/clutter/clutter-test-utils.c
+++ b/clutter/clutter-test-utils.c
@@ -21,7 +21,7 @@ typedef struct {
static ClutterTestEnvironment *test_environ = NULL;
-/**
+/*
* clutter_test_init:
* @argc:
* @argv:
@@ -79,7 +79,7 @@ out:
test_environ->no_display = no_display;
}
-/**
+/*
* clutter_test_get_stage:
*
* Retrieves the #ClutterStage used for testing.
@@ -149,7 +149,7 @@ out:
}
}
-/**
+/*
* clutter_test_add: (skip)
* @test_path:
* @test_func:
@@ -167,7 +167,7 @@ clutter_test_add (const char *test_path,
clutter_test_add_data_full (test_path, (GTestDataFunc) test_func, NULL, NULL);
}
-/**
+/*
* clutter_test_add_data: (skip)
* @test_path:
* @test_func:
@@ -187,7 +187,7 @@ clutter_test_add_data (const char *test_path,
clutter_test_add_data_full (test_path, test_func, test_data, NULL);
}
-/**
+/*
* clutter_test_add_data_full:
* @test_path:
* @test_func: (scope notified)
@@ -223,7 +223,7 @@ clutter_test_add_data_full (const char *test_path,
g_free);
}
-/**
+/*
* clutter_test_run:
*
* Runs the test suite using the units added by calling