[banshee/gtk3] build: tidy GSettingsSchemaExtractor
- From: AndrÃs Aragoneses <aaragoneses src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee/gtk3] build: tidy GSettingsSchemaExtractor
- Date: Tue, 18 Dec 2012 21:14:15 +0000 (UTC)
commit 8f815f1ce6fadae6a89f2ed629ab32e845770bd4
Author: Andres G. Aragoneses <knocte gmail com>
Date: Tue Dec 18 21:01:08 2012 +0000
build: tidy GSettingsSchemaExtractor
Last bits that were not respecting style.
build/GSettingsSchemaExtractor.cs | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/build/GSettingsSchemaExtractor.cs b/build/GSettingsSchemaExtractor.cs
index 469a5de..33aea86 100644
--- a/build/GSettingsSchemaExtractor.cs
+++ b/build/GSettingsSchemaExtractor.cs
@@ -45,7 +45,7 @@ public class GSettingsSchemaExtractorProgram
continue;
}
- object schema = field.GetValue(null);
+ object schema = field.GetValue (null);
AddSchemaEntry (schema.GetType ().GetField ("DefaultValue").GetValue (schema),
GetString (schema, "Namespace"),
@@ -116,15 +116,15 @@ public class GSettingsSchemaExtractorProgram
string str_type = null;
if (list) {
- if(value == null || ((object [])value).Length == 0) {
+ if (value == null || ((object[])value).Length == 0) {
GetValueString (type, null, out str_type);
str_val = "[]";
} else {
str_val = "[";
object [] arr = (object [])value;
- for(int i = 0; i < arr.Length; i++) {
+ for (int i = 0; i < arr.Length; i++) {
str_val += GetValueString (type, arr [i], out str_type).Replace (",", "\\,");
- if(i < arr.Length - 1) {
+ if (i < arr.Length - 1) {
str_val += ",";
}
}
@@ -135,8 +135,9 @@ public class GSettingsSchemaExtractorProgram
}
string type_attrib = str_type;
- if (list)
+ if (list) {
type_attrib = "a" + type_attrib;
+ }
StringBuilder builder = new StringBuilder ();
builder.AppendFormat (" <schema id=\"{0}\" path=\"{1}\" gettext-domain=\"banshee\">\n", id, path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]