summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRob Staudinger <robsta@linux.intel.com>2011-08-31 16:33:52 +0200
committerRob Staudinger <robsta@linux.intel.com>2011-08-31 16:35:13 +0200
commit0064cf14a2b0bbd95a100a4f4e1df6354cc9e594 (patch)
treea31ed91aa8b10ee8826e686f7c26d7e84f2d56dc /examples
parenta6018c0668d723fe86ffbb38345684cc794a3bd4 (diff)
video-profile: Some coding style tweaks.
Diffstat (limited to 'examples')
-rw-r--r--examples/video-profile/mock-player.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/video-profile/mock-player.c b/examples/video-profile/mock-player.c
index 0a058d1..4720743 100644
--- a/examples/video-profile/mock-player.c
+++ b/examples/video-profile/mock-player.c
@@ -50,11 +50,11 @@ enum {
};
typedef struct {
- char const **playlist;
- unsigned int current;
- bool playing;
- double volume;
- char *playable_uri;
+ char const **playlist;
+ unsigned current;
+ bool playing;
+ double volume;
+ char *playable_uri;
} MockPlayerPrivate;
/*
@@ -147,10 +147,10 @@ _player_interface_init (YtsgVPPlayerInterface *interface)
*/
static void
-_get_property (GObject *object,
- unsigned int property_id,
- GValue *value,
- GParamSpec *pspec)
+_get_property (GObject *object,
+ unsigned property_id,
+ GValue *value,
+ GParamSpec *pspec)
{
MockPlayerPrivate *priv = GET_PRIVATE (object);
@@ -178,7 +178,7 @@ _get_property (GObject *object,
static void
_set_property (GObject *object,
- unsigned int property_id,
+ unsigned property_id,
const GValue *value,
GParamSpec *pspec)
{