[rygel] core: Minor coding-style fixes
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel] core: Minor coding-style fixes
- Date: Fri, 20 Aug 2010 19:57:36 +0000 (UTC)
commit e24b4fa035125a7708eba18b5144dd3c897d2e49
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Fri Aug 20 22:53:21 2010 +0300
core: Minor coding-style fixes
src/rygel/rygel-media-object.vala | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/src/rygel/rygel-media-object.vala b/src/rygel/rygel-media-object.vala
index c106e11..770652a 100644
--- a/src/rygel/rygel-media-object.vala
+++ b/src/rygel/rygel-media-object.vala
@@ -65,21 +65,21 @@ public abstract class Rygel.MediaObject : GLib.Object {
set {
try {
- this._title = real_name_regex.replace_literal (
- value,
- -1,
- 0,
- Environment.get_real_name ());
- this._title = user_name_regex.replace_literal (
- this._title,
- -1,
- 0,
- Environment.get_user_name ());
- this._title = host_name_regex.replace_literal (
- this._title,
- -1,
- 0,
- Environment.get_host_name ());
+ this._title = real_name_regex.replace_literal
+ (value,
+ -1,
+ 0,
+ Environment.get_real_name ());
+ this._title = user_name_regex.replace_literal
+ (this._title,
+ -1,
+ 0,
+ Environment.get_user_name ());
+ this._title = host_name_regex.replace_literal
+ (this._title,
+ -1,
+ 0,
+ Environment.get_host_name ());
} catch (GLib.RegexError err) {
assert_not_reached ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]