summaryrefslogtreecommitdiff
path: root/examples/video-sink.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 /examples/video-sink.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 'examples/video-sink.c')
-rw-r--r--examples/video-sink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/video-sink.c b/examples/video-sink.c
index 9784dfe..0391572 100644
--- a/examples/video-sink.c
+++ b/examples/video-sink.c
@@ -28,8 +28,8 @@
void
size_change (ClutterTexture *texture,
- gfloat width,
- gfloat height,
+ gint width,
+ gint height,
gpointer user_data)
{
ClutterActor *stage;