summaryrefslogtreecommitdiff
path: root/tests/test-alpha.c
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2009-09-07 15:26:13 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2009-09-07 15:26:13 +0100
commitfbf744187db4c7bd5491092812f9e91477785c1a (patch)
treec8ba2f1801ac9871449d9f4056e7c315b30eef2b /tests/test-alpha.c
parenta98e0a09e36e0c680368279793d803ba384939b6 (diff)
downloadclutter-gst-fbf744187db4c7bd5491092812f9e91477785c1a.tar.gz
[misc] size-change signal signature uses gints
During a short periode it used gfloats for the texture size, but got reverted to gints shortly after. I forgot to update the signal signature.
Diffstat (limited to 'tests/test-alpha.c')
-rw-r--r--tests/test-alpha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-alpha.c b/tests/test-alpha.c
index 224062d..9214e90 100644
--- a/tests/test-alpha.c
+++ b/tests/test-alpha.c
@@ -66,8 +66,8 @@ parse_fourcc (const gchar *fourcc)
void
size_change (ClutterTexture *texture,
- gfloat width,
- gfloat height,
+ gint width,
+ gint height,
gpointer user_data)
{
ClutterActor *stage;